[object Object]

← back to Tk 11331 Exec

TK-11331 D3a: build reproducible momentum->X-prefix reprice manifest (582 mapped, 1082 skipped)

0572f3fd1bc3295bc0ed9531cd5910f4c85ded7b · 2026-09-09 13:41:33 -0700 · Steve Abrams

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01X3W2EKx4Yu1hZfiEdQPkQf

Files touched

Diff

commit 0572f3fd1bc3295bc0ed9531cd5910f4c85ded7b
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Wed Sep 9 13:41:33 2026 -0700

    TK-11331 D3a: build reproducible momentum->X-prefix reprice manifest (582 mapped, 1082 skipped)
    
    Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
    Claude-Session: https://claude.ai/code/session_01X3W2EKx4Yu1hZfiEdQPkQf
---
 build_d3a_manifest.py   |  175 ++++++++
 data/d3a-manifest.jsonl |  582 +++++++++++++++++++++++++
 data/d3a-skips.jsonl    | 1082 +++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 1839 insertions(+)

diff --git a/build_d3a_manifest.py b/build_d3a_manifest.py
new file mode 100644
index 0000000..7d2de09
--- /dev/null
+++ b/build_d3a_manifest.py
@@ -0,0 +1,175 @@
+#!/usr/bin/env python3
+"""
+TK-11331 Decision-3a reprice manifest builder (READ-ONLY, deterministic, reproducible).
+
+Rebuilds the momentum_colorways -> ACTIVE X-prefix Shopify product join that a prior
+session computed but never persisted (momentum_colorways.shopify_product_id is 100% NULL).
+
+INPUTS (all read-only):
+  data/candidates.tsv   pid|sku|width         (3,600 ACTIVE X-prefix products)
+  data/enum.jsonl       live Shopify reads    (status, variants+price, uom, width, min)
+  /tmp/mirror_x.tsv     dw_unified mirror dump: shopify_id\tdw_sku\tmfr_sku\tpattern_name\tvendor
+  /tmp/momentum.tsv     momentum_colorways dump: alt_sku\tmomentum_sku\tcolor_number\tpattern_number\thw_price\tpattern_name\tcolor_name
+
+  To regenerate the two /tmp dumps from the local mirror socket (host=/tmp):
+    psql -h /tmp -d dw_unified -F $'\t' -A -t -c \
+      "SELECT shopify_id, dw_sku, coalesce(mfr_sku,''), coalesce(pattern_name,''), coalesce(vendor,'') \
+       FROM shopify_products WHERE dw_sku LIKE 'X%'" > /tmp/mirror_x.tsv
+    psql -h /tmp -d dw_unified -F $'\t' -A -t -c \
+      "SELECT coalesce(alt_sku,''), coalesce(momentum_sku,''), coalesce(color_number,''), \
+              coalesce(pattern_number,''), coalesce(hw_price::text,''), pattern_name, color_name \
+       FROM momentum_colorways" > /tmp/momentum.tsv
+
+SCOPE / CLASSES: reprice-needed NON-YARD classes only, by uom value in
+  {null, 'Full Roll', 'Sold Per None', 'Sold Per EA'}.  ('Sold Per Yard*' rows are already
+  per-yard and are excluded.)
+
+JOIN METHODS (first hit wins, deterministic order):
+  1. exact-mfr-alt          mfr_sku == momentum.alt_sku
+  2. tail-match-alt         segment after last '_' in mfr_sku == momentum.alt_sku
+  3. code-map-momentum_sku  mfr_sku == momentum.momentum_sku
+  4. code-map-color_number  mfr_sku == momentum.color_number
+
+GUARDRAIL (all must hold, else EXCLUDE with reason):
+  - exactly ONE momentum row for the matched key (else ambiguous:N)
+  - hw_price non-null and > 0
+  - 15.0 <= hw_price <= 72.0  (per-yard retail band)
+  - a sellable (non "-sample") variant exists on the product
+  - XCD-69430 is MUST-QUOTE/MDC -> hard-excluded
+
+OUTPUTS (FILE artifacts only -- NO writes to dw_unified or Shopify):
+  data/d3a-manifest.jsonl   one row per confidently-mapped product (reprice + rollback source)
+  data/d3a-skips.jsonl      excluded products + reason
+"""
+import json, collections, os
+
+HERE = os.path.dirname(os.path.abspath(__file__))
+DATA = os.path.join(HERE, "data")
+MIRROR = "/tmp/mirror_x.tsv"
+MOMENTUM = "/tmp/momentum.tsv"
+NONYARD = {None, "Full Roll", "Sold Per None", "Sold Per EA"}
+MUSTQUOTE = {"XCD-69430"}
+BAND_LO, BAND_HI = 15.0, 72.0
+
+# --- momentum key indexes ---
+mom = []
+for l in open(MOMENTUM):
+    p = l.rstrip("\n").split("\t")
+    if len(p) < 7:
+        continue
+    alt, msku, cnum, pnum, hw, pat, col = p
+    mom.append(dict(alt=alt.strip(), msku=msku.strip(), cnum=cnum.strip(),
+                    hw=float(hw) if hw else None, pat=pat, col=col))
+
+def idx(field):
+    d = collections.defaultdict(list)
+    for r in mom:
+        if r[field]:
+            d[r[field]].append(r)
+    return d
+by_alt, by_msku, by_cnum = idx("alt"), idx("msku"), idx("cnum")
+
+# --- mirror mfr_sku by shopify gid ---
+mfr_by_gid = {}
+for l in open(MIRROR):
+    p = l.rstrip("\n").split("\t")
+    if len(p) < 5:
+        continue
+    mfr_by_gid[p[0]] = p[2].strip()
+
+# --- live Shopify enum ---
+enum = {json.loads(l)["pid"]: json.loads(l) for l in open(os.path.join(DATA, "enum.jsonl"))}
+cand = [l.rstrip("\n").split("|") for l in open(os.path.join(DATA, "candidates.tsv"))]
+
+tail = lambda m: m.rsplit("_", 1)[-1] if "_" in m else m
+
+def sellable(d):
+    vs = [v for v in d["variants"] if not (v["sku"] or "").lower().endswith("-sample")]
+    if not vs:
+        return None
+    vs.sort(key=lambda v: v.get("position", 99))
+    return vs[0]
+
+man = open(os.path.join(DATA, "d3a-manifest.jsonl"), "w")
+skp = open(os.path.join(DATA, "d3a-skips.jsonl"), "w")
+meth = collections.Counter(); skipc = collections.Counter()
+conf = 0; price_flags = []
+
+for pid, sku, width in cand:
+    d = enum.get(pid)
+    if not d:
+        continue
+    uom = d.get("uom"); uv = (uom or {}).get("value") if uom else None
+    if uv not in NONYARD:
+        continue
+    gid = f"gid://shopify/Product/{pid}"
+    mfr = mfr_by_gid.get(gid, "")
+    base = sku.rsplit("-yard", 1)[0] if sku.endswith("-yard") else sku.rsplit("-", 1)[0]
+    sv = sellable(d)
+    cur = float(sv["price"]) if sv else None
+    rb = dict(shopify_product_id=pid, sku=sku, dw_sku=base, mfr_sku=mfr,
+              current_price=cur, uom=uv, width=width)
+
+    if base in MUSTQUOTE or sku in MUSTQUOTE:
+        skipc["must-quote-mdc"] += 1
+        skp.write(json.dumps({**rb, "reason": "must-quote-mdc (XCD-69430 excluded per directive)"}) + "\n")
+        continue
+
+    t = tail(mfr); hit = None; m = None
+    if mfr and mfr in by_alt:
+        hit, m = by_alt[mfr], "exact-mfr-alt"
+    elif t and t in by_alt:
+        hit, m = by_alt[t], "tail-match-alt"
+    elif mfr and mfr in by_msku:
+        hit, m = by_msku[mfr], "code-map-momentum_sku"
+    elif mfr and mfr in by_cnum:
+        hit, m = by_cnum[mfr], "code-map-color_number"
+
+    if not hit:
+        skipc["no-momentum-match"] += 1
+        skp.write(json.dumps({**rb, "reason": "no-momentum-match"}) + "\n")
+        continue
+    if len(hit) > 1:
+        skipc["ambiguous-multi-row"] += 1
+        skp.write(json.dumps({**rb, "reason": f"ambiguous:{len(hit)}-momentum-rows"}) + "\n")
+        continue
+    r = hit[0]; hw = r["hw"]
+    if hw is None or hw <= 0:
+        skipc["hw-null-or-zero"] += 1
+        skp.write(json.dumps({**rb, "reason": f"hw_price null/zero ({hw})", "source_momentum_pattern": r["pat"]}) + "\n")
+        continue
+    if not (BAND_LO <= hw <= BAND_HI):
+        skipc["out-of-band"] += 1
+        skp.write(json.dumps({**rb, "reason": f"hw_price {hw} outside ${BAND_LO:.0f}-{BAND_HI:.0f}/yd band", "source_momentum_pattern": r["pat"]}) + "\n")
+        continue
+    if sv is None:
+        skipc["no-sellable-variant"] += 1
+        skp.write(json.dumps({**rb, "reason": "no sellable variant found", "source_momentum_pattern": r["pat"]}) + "\n")
+        continue
+
+    conf += 1; meth[m] += 1
+    if cur is not None and abs(cur - 4.25) > 0.001 and abs(cur - hw) > 0.001:
+        price_flags.append((sku, cur, hw, r["pat"]))
+    man.write(json.dumps(dict(
+        shopify_product_id=pid,
+        variant_id=sv["id"],
+        sku=sv["sku"],
+        current_price=cur,
+        source_momentum_pattern=r["pat"],
+        source_momentum_color=r["col"],
+        source_momentum_alt_sku=r["alt"],
+        new_price=hw,
+        hw_price=hw,
+        join_method=m,
+        mfr_sku=mfr,
+        uom=uv,
+        width=width,
+    )) + "\n")
+
+man.close(); skp.close()
+print("confidently-mapped:", conf)
+print("join-method breakdown:", dict(meth))
+print("skip breakdown:", dict(skipc), "total skipped:", sum(skipc.values()))
+print("price-flags (current != $4.25 and != hw_price):", len(price_flags))
+for s, c, h, p in sorted(price_flags, key=lambda x: -x[1]):
+    print(f"  {s}: current=${c} target_hw=${h} [{p}]")
diff --git a/data/d3a-manifest.jsonl b/data/d3a-manifest.jsonl
new file mode 100644
index 0000000..f5d03a5
--- /dev/null
+++ b/data/d3a-manifest.jsonl
@@ -0,0 +1,582 @@
+{"shopify_product_id": "1496280825968", "variant_id": "gid://shopify/ProductVariant/17831059324993", "sku": "XMM-44425-yard", "current_price": 43.76, "source_momentum_pattern": "Double Cross", "source_momentum_color": "Dome Silver", "source_momentum_alt_sku": "TR-DC-13", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "TR-DC-13", "uom": "Sold Per None", "width": "54\""}
+{"shopify_product_id": "1496281055344", "variant_id": "gid://shopify/ProductVariant/17831059357761", "sku": "XMM-44426-yard", "current_price": 43.76, "source_momentum_pattern": "Double Cross", "source_momentum_color": "Smoke Screen", "source_momentum_alt_sku": "TR-DC-14", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "TR-DC-14", "uom": "Sold Per None", "width": "54\""}
+{"shopify_product_id": "1499449491568", "variant_id": "gid://shopify/ProductVariant/44525118357555", "sku": "XWD-52157-yard", "current_price": 64.87, "source_momentum_pattern": "Fractal", "source_momentum_color": "Quartz", "source_momentum_alt_sku": "L2-FR-02", "new_price": 64.87, "hw_price": 64.87, "join_method": "tail-match-alt", "mfr_sku": "Fractal_L2-FR-02", "uom": "Sold Per EA", "width": "54\""}
+{"shopify_product_id": "1499449622640", "variant_id": "gid://shopify/ProductVariant/44525118390323", "sku": "XWD-52158-yard", "current_price": 64.87, "source_momentum_pattern": "Fractal", "source_momentum_color": "Celestine", "source_momentum_alt_sku": "L2-FR-03", "new_price": 64.87, "hw_price": 64.87, "join_method": "tail-match-alt", "mfr_sku": "Fractal_L2-FR-03", "uom": "Sold Per EA", "width": "54\""}
+{"shopify_product_id": "1499449819248", "variant_id": "gid://shopify/ProductVariant/44525118423091", "sku": "XWD-52159-yard", "current_price": 64.87, "source_momentum_pattern": "Fractal", "source_momentum_color": "Calcite", "source_momentum_alt_sku": "L2-FR-04", "new_price": 64.87, "hw_price": 64.87, "join_method": "tail-match-alt", "mfr_sku": "Fractal_L2-FR-04", "uom": "Sold Per EA", "width": "54\""}
+{"shopify_product_id": "1499450933360", "variant_id": "gid://shopify/ProductVariant/44525118619699", "sku": "XWD-52165-yard", "current_price": 64.87, "source_momentum_pattern": "Fractal", "source_momentum_color": "Zircon", "source_momentum_alt_sku": "L2-FR-10", "new_price": 64.87, "hw_price": 64.87, "join_method": "tail-match-alt", "mfr_sku": "Fractal_L2-FR-10", "uom": "Sold Per EA", "width": "54\""}
+{"shopify_product_id": "1499451097200", "variant_id": "gid://shopify/ProductVariant/44525118652467", "sku": "XWD-52166-yard", "current_price": 64.87, "source_momentum_pattern": "Fractal", "source_momentum_color": "Carbon", "source_momentum_alt_sku": "L2-FR-11", "new_price": 64.87, "hw_price": 64.87, "join_method": "tail-match-alt", "mfr_sku": "Fractal_L2-FR-11", "uom": "Sold Per EA", "width": "54\""}
+{"shopify_product_id": "1501179183216", "variant_id": "gid://shopify/ProductVariant/17657169838145", "sku": "XHW-2010144-yard", "current_price": 64.87, "source_momentum_pattern": "Fractal", "source_momentum_color": "Quartz", "source_momentum_alt_sku": "L2-FR-02", "new_price": 64.87, "hw_price": 64.87, "join_method": "tail-match-alt", "mfr_sku": "FRACTAL_L2-FR-02", "uom": "Sold Per EA", "width": "54\""}
+{"shopify_product_id": "1501179740272", "variant_id": "gid://shopify/ProductVariant/17657169969217", "sku": "XHW-2010147-yard", "current_price": 64.87, "source_momentum_pattern": "Fractal", "source_momentum_color": "Lattice", "source_momentum_alt_sku": "L2-FR-05", "new_price": 64.87, "hw_price": 64.87, "join_method": "tail-match-alt", "mfr_sku": "FRACTAL_L2-FR-05", "uom": "Sold Per EA", "width": "54\""}
+{"shopify_product_id": "1501179969648", "variant_id": "gid://shopify/ProductVariant/17657170001985", "sku": "XHW-2010148-yard", "current_price": 64.87, "source_momentum_pattern": "Fractal", "source_momentum_color": "Toffee", "source_momentum_alt_sku": "L2-FR-06", "new_price": 64.87, "hw_price": 64.87, "join_method": "tail-match-alt", "mfr_sku": "FRACTAL_L2-FR-06", "uom": "Sold Per EA", "width": "54\""}
+{"shopify_product_id": "1501180461168", "variant_id": "gid://shopify/ProductVariant/17657170034753", "sku": "XHW-2010149-yard", "current_price": 64.87, "source_momentum_pattern": "Fractal", "source_momentum_color": "White Sugar", "source_momentum_alt_sku": "L2-FR-07", "new_price": 64.87, "hw_price": 64.87, "join_method": "tail-match-alt", "mfr_sku": "FRACTAL_L2-FR-07", "uom": "Sold Per EA", "width": "54\""}
+{"shopify_product_id": "1501180657776", "variant_id": "gid://shopify/ProductVariant/17657170067521", "sku": "XHW-2010150-yard", "current_price": 64.87, "source_momentum_pattern": "Fractal", "source_momentum_color": "Crystalline", "source_momentum_alt_sku": "L2-FR-08", "new_price": 64.87, "hw_price": 64.87, "join_method": "tail-match-alt", "mfr_sku": "FRACTAL_L2-FR-08", "uom": "Sold Per EA", "width": "54\""}
+{"shopify_product_id": "1501181018224", "variant_id": "gid://shopify/ProductVariant/17657170133057", "sku": "XHW-2010153-yard", "current_price": 64.87, "source_momentum_pattern": "Fractal", "source_momentum_color": "Carbon", "source_momentum_alt_sku": "L2-FR-11", "new_price": 64.87, "hw_price": 64.87, "join_method": "tail-match-alt", "mfr_sku": "FRACTAL_L2-FR-11", "uom": "Sold Per EA", "width": "54\""}
+{"shopify_product_id": "1501181378672", "variant_id": "gid://shopify/ProductVariant/17657170231361", "sku": "XHW-2010155-yard", "current_price": 64.87, "source_momentum_pattern": "Fractal", "source_momentum_color": "Glitterati", "source_momentum_alt_sku": "L2-FR-13", "new_price": 64.87, "hw_price": 64.87, "join_method": "tail-match-alt", "mfr_sku": "FRACTAL_L2-FR-13", "uom": "Sold Per EA", "width": "54\""}
+{"shopify_product_id": "1501235544176", "variant_id": "gid://shopify/ProductVariant/17657146376257", "sku": "XHW-2010354-yard", "current_price": 45.54, "source_momentum_pattern": "Spun Silk", "source_momentum_color": "Vermilion", "source_momentum_alt_sku": "2VPN-14", "new_price": 52.71, "hw_price": 52.71, "join_method": "exact-mfr-alt", "mfr_sku": "2VPN-14", "uom": "Sold Per None", "width": "54\""}
+{"shopify_product_id": "6936681447475", "variant_id": "gid://shopify/ProductVariant/44802223767603", "sku": "XXP-969035", "current_price": 50.61, "source_momentum_pattern": "Abaca Grass", "source_momentum_color": "Indigo", "source_momentum_alt_sku": "T2-AG-16", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AG-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936681480243", "variant_id": "gid://shopify/ProductVariant/44802223964211", "sku": "XXP-969036", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Morning Horn", "source_momentum_alt_sku": "T2-AL-02", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936681513011", "variant_id": "gid://shopify/ProductVariant/44802224193587", "sku": "XXP-969037", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Sunlit Gold", "source_momentum_alt_sku": "T2-AL-03", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936681545779", "variant_id": "gid://shopify/ProductVariant/44802224422963", "sku": "XXP-969038", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Sunshine Sand", "source_momentum_alt_sku": "T2-AL-06", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936681578547", "variant_id": "gid://shopify/ProductVariant/44802227273779", "sku": "XXP-969039", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Sandish", "source_momentum_alt_sku": "T2-AL-07", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936681611315", "variant_id": "gid://shopify/ProductVariant/44802227470387", "sku": "XXP-969040", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Elegant Taupe", "source_momentum_alt_sku": "T2-AL-08", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936681644083", "variant_id": "gid://shopify/ProductVariant/44802227732531", "sku": "XXP-969041", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Silvery Mist", "source_momentum_alt_sku": "T2-AL-09", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936681709619", "variant_id": "gid://shopify/ProductVariant/44802227896371", "sku": "XXP-969042", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Noble Grey", "source_momentum_alt_sku": "T2-AL-10", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936681742387", "variant_id": "gid://shopify/ProductVariant/44802228092979", "sku": "XXP-969043", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Antique Silver", "source_momentum_alt_sku": "T2-AL-11", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936681807923", "variant_id": "gid://shopify/ProductVariant/44802228191283", "sku": "XXP-969044", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Fresh White", "source_momentum_alt_sku": "T2-AL-19", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-19", "uom": null, "width": ""}
+{"shopify_product_id": "6936681840691", "variant_id": "gid://shopify/ProductVariant/44802228224051", "sku": "XXP-969045", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Bluebell", "source_momentum_alt_sku": "T2-AL-20", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-20", "uom": null, "width": ""}
+{"shopify_product_id": "6936681873459", "variant_id": "gid://shopify/ProductVariant/44802228322355", "sku": "XXP-969046", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Deep Indigo", "source_momentum_alt_sku": "T2-AL-21", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-21", "uom": null, "width": ""}
+{"shopify_product_id": "6936681906227", "variant_id": "gid://shopify/ProductVariant/44802228715571", "sku": "XXP-969047", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Malachite", "source_momentum_alt_sku": "T2-AL-22", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-22", "uom": null, "width": ""}
+{"shopify_product_id": "6936681938995", "variant_id": "gid://shopify/ProductVariant/44802228977715", "sku": "XXP-969048", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Slate", "source_momentum_alt_sku": "T2-AL-23", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-23", "uom": null, "width": ""}
+{"shopify_product_id": "6936682004531", "variant_id": "gid://shopify/ProductVariant/44802229207091", "sku": "XXP-969049", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Inkwell", "source_momentum_alt_sku": "T2-AL-24", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-24", "uom": null, "width": ""}
+{"shopify_product_id": "6936682037299", "variant_id": "gid://shopify/ProductVariant/44802229436467", "sku": "XXP-969050", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Pearled", "source_momentum_alt_sku": "T2-AL-25", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-25", "uom": null, "width": ""}
+{"shopify_product_id": "6936682070067", "variant_id": "gid://shopify/ProductVariant/44802229731379", "sku": "XXP-969051", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Light Greige", "source_momentum_alt_sku": "T2-AL-26", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-26", "uom": null, "width": ""}
+{"shopify_product_id": "6936682102835", "variant_id": "gid://shopify/ProductVariant/44802229927987", "sku": "XXP-969052", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Mocha", "source_momentum_alt_sku": "T2-AL-27", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-27", "uom": null, "width": ""}
+{"shopify_product_id": "6936682135603", "variant_id": "gid://shopify/ProductVariant/44802230124595", "sku": "XXP-969053", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Cream", "source_momentum_alt_sku": "T2-AL-28", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-28", "uom": null, "width": ""}
+{"shopify_product_id": "6936682299443", "variant_id": "gid://shopify/ProductVariant/44802230386739", "sku": "XXP-969054", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Nude", "source_momentum_alt_sku": "T2-AL-29", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-29", "uom": null, "width": ""}
+{"shopify_product_id": "6936682332211", "variant_id": "gid://shopify/ProductVariant/44802244804659", "sku": "XXP-969055", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Dusty Trail", "source_momentum_alt_sku": "T2-AL-30", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-30", "uom": null, "width": ""}
+{"shopify_product_id": "6936682364979", "variant_id": "gid://shopify/ProductVariant/44802245034035", "sku": "XXP-969056", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Cinnamon Stick", "source_momentum_alt_sku": "T2-AL-31", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-31", "uom": null, "width": ""}
+{"shopify_product_id": "6936682397747", "variant_id": "gid://shopify/ProductVariant/44802245230643", "sku": "XXP-969057", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Pale Amber", "source_momentum_alt_sku": "T2-AL-32", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-32", "uom": null, "width": ""}
+{"shopify_product_id": "6936682430515", "variant_id": "gid://shopify/ProductVariant/44802245460019", "sku": "XXP-969058", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Spiced", "source_momentum_alt_sku": "T2-AL-33", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-33", "uom": null, "width": ""}
+{"shopify_product_id": "6936682463283", "variant_id": "gid://shopify/ProductVariant/44802245689395", "sku": "XXP-969059", "current_price": 51.04, "source_momentum_pattern": "Absolute", "source_momentum_color": "Pomegranate", "source_momentum_alt_sku": "T2-AL-34", "new_price": 51.04, "hw_price": 51.04, "join_method": "exact-mfr-alt", "mfr_sku": "T2-AL-34", "uom": null, "width": ""}
+{"shopify_product_id": "6936683020339", "variant_id": "gid://shopify/ProductVariant/44802245886003", "sku": "XXP-969073", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Lime", "source_momentum_alt_sku": "T2-BA-03", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936683053107", "variant_id": "gid://shopify/ProductVariant/44802246115379", "sku": "XXP-969074", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Linen", "source_momentum_alt_sku": "T2-BA-06", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936683085875", "variant_id": "gid://shopify/ProductVariant/44802246279219", "sku": "XXP-969075", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "French White", "source_momentum_alt_sku": "T2-BA-09", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936683118643", "variant_id": "gid://shopify/ProductVariant/44802246508595", "sku": "XXP-969076", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Cotton", "source_momentum_alt_sku": "T2-BA-10", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936683151411", "variant_id": "gid://shopify/ProductVariant/44802246836275", "sku": "XXP-969077", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Nickel", "source_momentum_alt_sku": "T2-BA-13", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936683184179", "variant_id": "gid://shopify/ProductVariant/44802247065651", "sku": "XXP-969078", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Twilight Grey", "source_momentum_alt_sku": "T2-BA-15", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936683216947", "variant_id": "gid://shopify/ProductVariant/44802247295027", "sku": "XXP-969079", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Crystal Waters", "source_momentum_alt_sku": "T2-BA-16", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936683249715", "variant_id": "gid://shopify/ProductVariant/44802247557171", "sku": "XXP-969080", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Lilac", "source_momentum_alt_sku": "T2-BA-17", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-17", "uom": null, "width": ""}
+{"shopify_product_id": "6936683315251", "variant_id": "gid://shopify/ProductVariant/44802247819315", "sku": "XXP-969081", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Plum", "source_momentum_alt_sku": "T2-BA-18", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-18", "uom": null, "width": ""}
+{"shopify_product_id": "6936683348019", "variant_id": "gid://shopify/ProductVariant/44802248081459", "sku": "XXP-969082", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Royal", "source_momentum_alt_sku": "T2-BA-20", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-20", "uom": null, "width": ""}
+{"shopify_product_id": "6936683380787", "variant_id": "gid://shopify/ProductVariant/44802248310835", "sku": "XXP-969083", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Checkmate", "source_momentum_alt_sku": "T2-BA-21", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-21", "uom": null, "width": ""}
+{"shopify_product_id": "6936683413555", "variant_id": "gid://shopify/ProductVariant/44802248474675", "sku": "XXP-969084", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Lace", "source_momentum_alt_sku": "T2-BA-22", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-22", "uom": null, "width": ""}
+{"shopify_product_id": "6936683446323", "variant_id": "gid://shopify/ProductVariant/44802248671283", "sku": "XXP-969085", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Silver", "source_momentum_alt_sku": "T2-BA-23", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-23", "uom": null, "width": ""}
+{"shopify_product_id": "6936683511859", "variant_id": "gid://shopify/ProductVariant/44802248867891", "sku": "XXP-969086", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Charcoal", "source_momentum_alt_sku": "T2-BA-24", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-24", "uom": null, "width": ""}
+{"shopify_product_id": "6936683544627", "variant_id": "gid://shopify/ProductVariant/44802248998963", "sku": "XXP-969087", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Steel", "source_momentum_alt_sku": "T2-BA-25", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-25", "uom": null, "width": ""}
+{"shopify_product_id": "6936683577395", "variant_id": "gid://shopify/ProductVariant/44802249064499", "sku": "XXP-969088", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Gold Nugget", "source_momentum_alt_sku": "T2-BA-26", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-26", "uom": null, "width": ""}
+{"shopify_product_id": "6936683610163", "variant_id": "gid://shopify/ProductVariant/44802249097267", "sku": "XXP-969089", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Cocoa", "source_momentum_alt_sku": "T2-BA-27", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-27", "uom": null, "width": ""}
+{"shopify_product_id": "6936683642931", "variant_id": "gid://shopify/ProductVariant/44802249130035", "sku": "XXP-969090", "current_price": 52.78, "source_momentum_pattern": "Batiste", "source_momentum_color": "Violet", "source_momentum_alt_sku": "T2-BA-28", "new_price": 52.78, "hw_price": 52.78, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BA-28", "uom": null, "width": ""}
+{"shopify_product_id": "6936683675699", "variant_id": "gid://shopify/ProductVariant/44802249293875", "sku": "XXP-969091", "current_price": 57.99, "source_momentum_pattern": "Belgian Bold", "source_momentum_color": "Starched", "source_momentum_alt_sku": "T2-BB-01", "new_price": 57.99, "hw_price": 57.99, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BB-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936683708467", "variant_id": "gid://shopify/ProductVariant/44802249523251", "sku": "XXP-969092", "current_price": 57.99, "source_momentum_pattern": "Belgian Bold", "source_momentum_color": "Contrast", "source_momentum_alt_sku": "T2-BB-02", "new_price": 57.99, "hw_price": 57.99, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BB-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936683774003", "variant_id": "gid://shopify/ProductVariant/44802249719859", "sku": "XXP-969093", "current_price": 57.99, "source_momentum_pattern": "Belgian Bold", "source_momentum_color": "Merino", "source_momentum_alt_sku": "T2-BB-03", "new_price": 57.99, "hw_price": 57.99, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BB-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936683806771", "variant_id": "gid://shopify/ProductVariant/44802249883699", "sku": "XXP-969094", "current_price": 57.99, "source_momentum_pattern": "Belgian Bold", "source_momentum_color": "Russet", "source_momentum_alt_sku": "T2-BB-04", "new_price": 57.99, "hw_price": 57.99, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BB-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936683839539", "variant_id": "gid://shopify/ProductVariant/44802250113075", "sku": "XXP-969095", "current_price": 61.32, "source_momentum_pattern": "Boucle", "source_momentum_color": "Dove", "source_momentum_alt_sku": "T2-BC-01", "new_price": 61.32, "hw_price": 61.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BC-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936683872307", "variant_id": "gid://shopify/ProductVariant/44802250276915", "sku": "XXP-969096", "current_price": 61.32, "source_momentum_pattern": "Boucle", "source_momentum_color": "Silverwisp", "source_momentum_alt_sku": "T2-BC-02", "new_price": 61.32, "hw_price": 61.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BC-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936683937843", "variant_id": "gid://shopify/ProductVariant/44802250473523", "sku": "XXP-969097", "current_price": 61.32, "source_momentum_pattern": "Boucle", "source_momentum_color": "Earl Gray", "source_momentum_alt_sku": "T2-BC-03", "new_price": 61.32, "hw_price": 61.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BC-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936683970611", "variant_id": "gid://shopify/ProductVariant/44802250768435", "sku": "XXP-969098", "current_price": 61.32, "source_momentum_pattern": "Boucle", "source_momentum_color": "Ashen", "source_momentum_alt_sku": "T2-BC-04", "new_price": 61.32, "hw_price": 61.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BC-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936684036147", "variant_id": "gid://shopify/ProductVariant/44802250965043", "sku": "XXP-969099", "current_price": 61.32, "source_momentum_pattern": "Boucle", "source_momentum_color": "Taupe", "source_momentum_alt_sku": "T2-BC-05", "new_price": 61.32, "hw_price": 61.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BC-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936684101683", "variant_id": "gid://shopify/ProductVariant/44802251161651", "sku": "XXP-969100", "current_price": 61.32, "source_momentum_pattern": "Boucle", "source_momentum_color": "Storm", "source_momentum_alt_sku": "T2-BC-06", "new_price": 61.32, "hw_price": 61.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BC-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936684134451", "variant_id": "gid://shopify/ProductVariant/44802251391027", "sku": "XXP-969101", "current_price": 61.32, "source_momentum_pattern": "Boucle", "source_momentum_color": "Naturale", "source_momentum_alt_sku": "T2-BC-07", "new_price": 61.32, "hw_price": 61.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BC-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936684167219", "variant_id": "gid://shopify/ProductVariant/44802251620403", "sku": "XXP-969102", "current_price": 61.32, "source_momentum_pattern": "Boucle", "source_momentum_color": "Beige Mist", "source_momentum_alt_sku": "T2-BC-08", "new_price": 61.32, "hw_price": 61.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BC-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936684199987", "variant_id": "gid://shopify/ProductVariant/44802251817011", "sku": "XXP-969103", "current_price": 61.32, "source_momentum_pattern": "Boucle", "source_momentum_color": "Peat", "source_momentum_alt_sku": "T2-BC-09", "new_price": 61.32, "hw_price": 61.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BC-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936684265523", "variant_id": "gid://shopify/ProductVariant/44802251980851", "sku": "XXP-969104", "current_price": 61.32, "source_momentum_pattern": "Boucle", "source_momentum_color": "Meadow", "source_momentum_alt_sku": "T2-BC-10", "new_price": 61.32, "hw_price": 61.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BC-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936684298291", "variant_id": "gid://shopify/ProductVariant/44802252177459", "sku": "XXP-969105", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Duck Egg", "source_momentum_alt_sku": "T2-BL-01", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936684363827", "variant_id": "gid://shopify/ProductVariant/44802252406835", "sku": "XXP-969106", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Delft", "source_momentum_alt_sku": "T2-BL-02", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936684396595", "variant_id": "gid://shopify/ProductVariant/44802252603443", "sku": "XXP-969107", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Marine", "source_momentum_alt_sku": "T2-BL-03", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936684462131", "variant_id": "gid://shopify/ProductVariant/44802252734515", "sku": "XXP-969108", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Soft Grey", "source_momentum_alt_sku": "T2-BL-04", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936684494899", "variant_id": "gid://shopify/ProductVariant/44802252931123", "sku": "XXP-969109", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Whale", "source_momentum_alt_sku": "T2-BL-05", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936684527667", "variant_id": "gid://shopify/ProductVariant/44802253160499", "sku": "XXP-969110", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Cinder", "source_momentum_alt_sku": "T2-BL-06", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936684593203", "variant_id": "gid://shopify/ProductVariant/44802253357107", "sku": "XXP-969111", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Tender Grey", "source_momentum_alt_sku": "T2-BL-07", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936684625971", "variant_id": "gid://shopify/ProductVariant/44802253553715", "sku": "XXP-969112", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Dove", "source_momentum_alt_sku": "T2-BL-08", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936684658739", "variant_id": "gid://shopify/ProductVariant/44802253815859", "sku": "XXP-969113", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Mole", "source_momentum_alt_sku": "T2-BL-09", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936684691507", "variant_id": "gid://shopify/ProductVariant/44802254110771", "sku": "XXP-969114", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Starched", "source_momentum_alt_sku": "T2-BL-10", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936684724275", "variant_id": "gid://shopify/ProductVariant/44802254340147", "sku": "XXP-969115", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Merino", "source_momentum_alt_sku": "T2-BL-11", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936684757043", "variant_id": "gid://shopify/ProductVariant/44802254503987", "sku": "XXP-969116", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Linen", "source_momentum_alt_sku": "T2-BL-12", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936684789811", "variant_id": "gid://shopify/ProductVariant/44802254667827", "sku": "XXP-969117", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Vanilla", "source_momentum_alt_sku": "T2-BL-13", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936684855347", "variant_id": "gid://shopify/ProductVariant/44802254864435", "sku": "XXP-969118", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Flaxen", "source_momentum_alt_sku": "T2-BL-14", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936684888115", "variant_id": "gid://shopify/ProductVariant/44802254962739", "sku": "XXP-969119", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Cedar", "source_momentum_alt_sku": "T2-BL-15", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936684920883", "variant_id": "gid://shopify/ProductVariant/44802254995507", "sku": "XXP-969120", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Beige", "source_momentum_alt_sku": "T2-BL-16", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936684953651", "variant_id": "gid://shopify/ProductVariant/44802255028275", "sku": "XXP-969121", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Rye", "source_momentum_alt_sku": "T2-BL-17", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-17", "uom": null, "width": ""}
+{"shopify_product_id": "6936684986419", "variant_id": "gid://shopify/ProductVariant/44802255192115", "sku": "XXP-969122", "current_price": 56.11, "source_momentum_pattern": "Belgian Linen", "source_momentum_color": "Russet", "source_momentum_alt_sku": "T2-BL-18", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-BL-18", "uom": null, "width": ""}
+{"shopify_product_id": "6936685019187", "variant_id": "gid://shopify/ProductVariant/44802255388723", "sku": "XXP-969123", "current_price": 50.32, "source_momentum_pattern": "City Linen", "source_momentum_color": "Clouded Blanca", "source_momentum_alt_sku": "T2-CL-20", "new_price": 50.32, "hw_price": 50.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CL-20", "uom": null, "width": ""}
+{"shopify_product_id": "6936685051955", "variant_id": "gid://shopify/ProductVariant/44802255552563", "sku": "XXP-969124", "current_price": 50.32, "source_momentum_pattern": "City Linen", "source_momentum_color": "Sumner Wheat", "source_momentum_alt_sku": "T2-CL-21", "new_price": 50.32, "hw_price": 50.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CL-21", "uom": null, "width": ""}
+{"shopify_product_id": "6936685084723", "variant_id": "gid://shopify/ProductVariant/44802255814707", "sku": "XXP-969125", "current_price": 50.32, "source_momentum_pattern": "City Linen", "source_momentum_color": "Traverse Cherry", "source_momentum_alt_sku": "T2-CL-22", "new_price": 50.32, "hw_price": 50.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CL-22", "uom": null, "width": ""}
+{"shopify_product_id": "6936685117491", "variant_id": "gid://shopify/ProductVariant/44802255978547", "sku": "XXP-969126", "current_price": 50.32, "source_momentum_pattern": "City Linen", "source_momentum_color": "Guernsey", "source_momentum_alt_sku": "T2-CL-23", "new_price": 50.32, "hw_price": 50.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CL-23", "uom": null, "width": ""}
+{"shopify_product_id": "6936685150259", "variant_id": "gid://shopify/ProductVariant/44802256273459", "sku": "XXP-969127", "current_price": 50.32, "source_momentum_pattern": "City Linen", "source_momentum_color": "Juneau Frost", "source_momentum_alt_sku": "T2-CL-24", "new_price": 50.32, "hw_price": 50.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CL-24", "uom": null, "width": ""}
+{"shopify_product_id": "6936685183027", "variant_id": "gid://shopify/ProductVariant/44802256470067", "sku": "XXP-969128", "current_price": 50.32, "source_momentum_pattern": "City Linen", "source_momentum_color": "Heather Loch", "source_momentum_alt_sku": "T2-CL-25", "new_price": 50.32, "hw_price": 50.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CL-25", "uom": null, "width": ""}
+{"shopify_product_id": "6936685215795", "variant_id": "gid://shopify/ProductVariant/44802256666675", "sku": "XXP-969129", "current_price": 50.32, "source_momentum_pattern": "City Linen", "source_momentum_color": "D. C. Obsidian", "source_momentum_alt_sku": "T2-CL-26", "new_price": 50.32, "hw_price": 50.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CL-26", "uom": null, "width": ""}
+{"shopify_product_id": "6936685248563", "variant_id": "gid://shopify/ProductVariant/44802256928819", "sku": "XXP-969130", "current_price": 50.32, "source_momentum_pattern": "City Linen", "source_momentum_color": "Portland Navy", "source_momentum_alt_sku": "T2-CL-27", "new_price": 50.32, "hw_price": 50.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CL-27", "uom": null, "width": ""}
+{"shopify_product_id": "6936685281331", "variant_id": "gid://shopify/ProductVariant/44802257125427", "sku": "XXP-969131", "current_price": 50.32, "source_momentum_pattern": "City Linen", "source_momentum_color": "Thai Teal", "source_momentum_alt_sku": "T2-CL-28", "new_price": 50.32, "hw_price": 50.32, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CL-28", "uom": null, "width": ""}
+{"shopify_product_id": "6936685314099", "variant_id": "gid://shopify/ProductVariant/44802257322035", "sku": "XXP-969132", "current_price": 51.98, "source_momentum_pattern": "Como", "source_momentum_color": "White Alps", "source_momentum_alt_sku": "T2-CM-01", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CM-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936685346867", "variant_id": "gid://shopify/ProductVariant/44802259484723", "sku": "XXP-969133", "current_price": 51.98, "source_momentum_pattern": "Como", "source_momentum_color": "Faded Fresco", "source_momentum_alt_sku": "T2-CM-02", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CM-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936685379635", "variant_id": "gid://shopify/ProductVariant/44802259714099", "sku": "XXP-969134", "current_price": 51.98, "source_momentum_pattern": "Como", "source_momentum_color": "Stone Sculpture", "source_momentum_alt_sku": "T2-CM-03", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CM-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936685412403", "variant_id": "gid://shopify/ProductVariant/44802259910707", "sku": "XXP-969135", "current_price": 51.98, "source_momentum_pattern": "Como", "source_momentum_color": "Cliffside Castle", "source_momentum_alt_sku": "T2-CM-04", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CM-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936685445171", "variant_id": "gid://shopify/ProductVariant/44802260107315", "sku": "XXP-969136", "current_price": 51.98, "source_momentum_pattern": "Como", "source_momentum_color": "Biker Black", "source_momentum_alt_sku": "T2-CM-05", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CM-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936685477939", "variant_id": "gid://shopify/ProductVariant/44802260369459", "sku": "XXP-969137", "current_price": 51.98, "source_momentum_pattern": "Como", "source_momentum_color": "Ivory Tower", "source_momentum_alt_sku": "T2-CM-06", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CM-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936685510707", "variant_id": "gid://shopify/ProductVariant/44802260566067", "sku": "XXP-969138", "current_price": 51.98, "source_momentum_pattern": "Como", "source_momentum_color": "Gold Touch", "source_momentum_alt_sku": "T2-CM-07", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CM-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936685543475", "variant_id": "gid://shopify/ProductVariant/44802260664371", "sku": "XXP-969139", "current_price": 51.98, "source_momentum_pattern": "Como", "source_momentum_color": "Cappuccino", "source_momentum_alt_sku": "T2-CM-08", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CM-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936685576243", "variant_id": "gid://shopify/ProductVariant/44802260893747", "sku": "XXP-969140", "current_price": 51.98, "source_momentum_pattern": "Como", "source_momentum_color": "Bronze Age", "source_momentum_alt_sku": "T2-CM-09", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CM-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936685609011", "variant_id": "gid://shopify/ProductVariant/44802261057587", "sku": "XXP-969141", "current_price": 51.98, "source_momentum_pattern": "Como", "source_momentum_color": "Dark Leather", "source_momentum_alt_sku": "T2-CM-10", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CM-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936685641779", "variant_id": "gid://shopify/ProductVariant/44802261221427", "sku": "XXP-969142", "current_price": 51.98, "source_momentum_pattern": "Como", "source_momentum_color": "Lake", "source_momentum_alt_sku": "T2-CM-11", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CM-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936685674547", "variant_id": "gid://shopify/ProductVariant/44802261418035", "sku": "XXP-969143", "current_price": 51.98, "source_momentum_pattern": "Como", "source_momentum_color": "Blue Bellini", "source_momentum_alt_sku": "T2-CM-12", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CM-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936685740083", "variant_id": "gid://shopify/ProductVariant/44802261680179", "sku": "XXP-969144", "current_price": 51.98, "source_momentum_pattern": "Como", "source_momentum_color": "Lemon Lime", "source_momentum_alt_sku": "T2-CM-13", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CM-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936685772851", "variant_id": "gid://shopify/ProductVariant/44802262073395", "sku": "XXP-969145", "current_price": 51.98, "source_momentum_pattern": "Como", "source_momentum_color": "Hillside Villa", "source_momentum_alt_sku": "T2-CM-14", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CM-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936685805619", "variant_id": "gid://shopify/ProductVariant/44802262237235", "sku": "XXP-969146", "current_price": 51.98, "source_momentum_pattern": "Como", "source_momentum_color": "Silver & Gold", "source_momentum_alt_sku": "T2-CM-15", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CM-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936685838387", "variant_id": "gid://shopify/ProductVariant/44802262433843", "sku": "XXP-969147", "current_price": 51.98, "source_momentum_pattern": "Como", "source_momentum_color": "Red Sangria", "source_momentum_alt_sku": "T2-CM-16", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CM-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936686166067", "variant_id": "gid://shopify/ProductVariant/44802262663219", "sku": "XXP-969154", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Almond Squeeze", "source_momentum_alt_sku": "T2-CN-20", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-20", "uom": null, "width": ""}
+{"shopify_product_id": "6936686231603", "variant_id": "gid://shopify/ProductVariant/44802263023667", "sku": "XXP-969156", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Pickel", "source_momentum_alt_sku": "T2-CN-22", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-22", "uom": null, "width": ""}
+{"shopify_product_id": "6936686264371", "variant_id": "gid://shopify/ProductVariant/44802263285811", "sku": "XXP-969157", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Polar Puzzler", "source_momentum_alt_sku": "T2-CN-23", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-23", "uom": null, "width": ""}
+{"shopify_product_id": "6936686297139", "variant_id": "gid://shopify/ProductVariant/44802263449651", "sku": "XXP-969158", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Ocean Enigma", "source_momentum_alt_sku": "T2-CN-24", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-24", "uom": null, "width": ""}
+{"shopify_product_id": "6936686362675", "variant_id": "gid://shopify/ProductVariant/44802263547955", "sku": "XXP-969159", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Denim Crisis", "source_momentum_alt_sku": "T2-CN-25", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-25", "uom": null, "width": ""}
+{"shopify_product_id": "6936686395443", "variant_id": "gid://shopify/ProductVariant/44802263646259", "sku": "XXP-969160", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Teal Twister", "source_momentum_alt_sku": "T2-CN-26", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-26", "uom": null, "width": ""}
+{"shopify_product_id": "6936686428211", "variant_id": "gid://shopify/ProductVariant/44802264301619", "sku": "XXP-969161", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Silver Secret", "source_momentum_alt_sku": "T2-CN-27", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-27", "uom": null, "width": ""}
+{"shopify_product_id": "6936686460979", "variant_id": "gid://shopify/ProductVariant/44802264629299", "sku": "XXP-969162", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Foggy", "source_momentum_alt_sku": "T2-CN-28", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-28", "uom": null, "width": ""}
+{"shopify_product_id": "6936686493747", "variant_id": "gid://shopify/ProductVariant/44802264858675", "sku": "XXP-969163", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Misty Mystery", "source_momentum_alt_sku": "T2-CN-29", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-29", "uom": null, "width": ""}
+{"shopify_product_id": "6936686526515", "variant_id": "gid://shopify/ProductVariant/44802265055283", "sku": "XXP-969164", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Shady Maze", "source_momentum_alt_sku": "T2-CN-30", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-30", "uom": null, "width": ""}
+{"shopify_product_id": "6936686559283", "variant_id": "gid://shopify/ProductVariant/44802265284659", "sku": "XXP-969165", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Golden Dilemma", "source_momentum_alt_sku": "T2-CN-31", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-31", "uom": null, "width": ""}
+{"shopify_product_id": "6936686592051", "variant_id": "gid://shopify/ProductVariant/44802265546803", "sku": "XXP-969166", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Bark in A Bind", "source_momentum_alt_sku": "T2-CN-32", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-32", "uom": null, "width": ""}
+{"shopify_product_id": "6936686624819", "variant_id": "gid://shopify/ProductVariant/44802265776179", "sku": "XXP-969167", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Brown Fuddle", "source_momentum_alt_sku": "T2-CN-33", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-33", "uom": null, "width": ""}
+{"shopify_product_id": "6936686657587", "variant_id": "gid://shopify/ProductVariant/44802265972787", "sku": "XXP-969168", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Intricate Plum", "source_momentum_alt_sku": "T2-CN-34", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-34", "uom": null, "width": ""}
+{"shopify_product_id": "6936686690355", "variant_id": "gid://shopify/ProductVariant/44802266202163", "sku": "XXP-969169", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Tan Conspiracy", "source_momentum_alt_sku": "T2-CN-35", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-35", "uom": null, "width": ""}
+{"shopify_product_id": "6936686723123", "variant_id": "gid://shopify/ProductVariant/44802266398771", "sku": "XXP-969170", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Penny Grabber", "source_momentum_alt_sku": "T2-CN-36", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-36", "uom": null, "width": ""}
+{"shopify_product_id": "6936686755891", "variant_id": "gid://shopify/ProductVariant/44802266595379", "sku": "XXP-969171", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Crimson Thrill", "source_momentum_alt_sku": "T2-CN-37", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-37", "uom": null, "width": ""}
+{"shopify_product_id": "6936686788659", "variant_id": "gid://shopify/ProductVariant/44802266791987", "sku": "XXP-969172", "current_price": 54.3, "source_momentum_pattern": "Conundrum", "source_momentum_color": "Aqua Teaser", "source_momentum_alt_sku": "T2-CN-38", "new_price": 54.3, "hw_price": 54.3, "join_method": "exact-mfr-alt", "mfr_sku": "T2-CN-38", "uom": null, "width": ""}
+{"shopify_product_id": "6936687018035", "variant_id": "gid://shopify/ProductVariant/44802267021363", "sku": "XXP-969179", "current_price": 51.98, "source_momentum_pattern": "Double Cross", "source_momentum_color": "Thin Red Line", "source_momentum_alt_sku": "T2-DC-20", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-DC-20", "uom": null, "width": ""}
+{"shopify_product_id": "6936687050803", "variant_id": "gid://shopify/ProductVariant/44802267283507", "sku": "XXP-969180", "current_price": 51.98, "source_momentum_pattern": "Double Cross", "source_momentum_color": "Fuchsia Flash", "source_momentum_alt_sku": "T2-DC-21", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-DC-21", "uom": null, "width": ""}
+{"shopify_product_id": "6936687083571", "variant_id": "gid://shopify/ProductVariant/44802267480115", "sku": "XXP-969181", "current_price": 51.98, "source_momentum_pattern": "Double Cross", "source_momentum_color": "After Dark", "source_momentum_alt_sku": "T2-DC-22", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-DC-22", "uom": null, "width": ""}
+{"shopify_product_id": "6936687116339", "variant_id": "gid://shopify/ProductVariant/44802267676723", "sku": "XXP-969182", "current_price": 51.98, "source_momentum_pattern": "Double Cross", "source_momentum_color": "Pick Up Sticks", "source_momentum_alt_sku": "T2-DC-23", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-DC-23", "uom": null, "width": ""}
+{"shopify_product_id": "6936687149107", "variant_id": "gid://shopify/ProductVariant/44802267906099", "sku": "XXP-969183", "current_price": 51.98, "source_momentum_pattern": "Double Cross", "source_momentum_color": "Shiver", "source_momentum_alt_sku": "T2-DC-24", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-DC-24", "uom": null, "width": ""}
+{"shopify_product_id": "6936687181875", "variant_id": "gid://shopify/ProductVariant/44802268135475", "sku": "XXP-969184", "current_price": 51.98, "source_momentum_pattern": "Double Cross", "source_momentum_color": "Sable", "source_momentum_alt_sku": "T2-DC-25", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-DC-25", "uom": null, "width": ""}
+{"shopify_product_id": "6936687214643", "variant_id": "gid://shopify/ProductVariant/44802268364851", "sku": "XXP-969185", "current_price": 51.98, "source_momentum_pattern": "Double Cross", "source_momentum_color": "Bronzed", "source_momentum_alt_sku": "T2-DC-26", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-DC-26", "uom": null, "width": ""}
+{"shopify_product_id": "6936687280179", "variant_id": "gid://shopify/ProductVariant/44802268561459", "sku": "XXP-969187", "current_price": 51.98, "source_momentum_pattern": "Double Cross", "source_momentum_color": "Jungle Fever", "source_momentum_alt_sku": "T2-DC-28", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-DC-28", "uom": null, "width": ""}
+{"shopify_product_id": "6936687312947", "variant_id": "gid://shopify/ProductVariant/44802268725299", "sku": "XXP-969188", "current_price": 51.98, "source_momentum_pattern": "Double Cross", "source_momentum_color": "Off Tropic", "source_momentum_alt_sku": "T2-DC-29", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-DC-29", "uom": null, "width": ""}
+{"shopify_product_id": "6936687345715", "variant_id": "gid://shopify/ProductVariant/44802268889139", "sku": "XXP-969189", "current_price": 51.98, "source_momentum_pattern": "Double Cross", "source_momentum_color": "Blue-Tiful", "source_momentum_alt_sku": "T2-DC-30", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-DC-30", "uom": null, "width": ""}
+{"shopify_product_id": "6936687378483", "variant_id": "gid://shopify/ProductVariant/44802269118515", "sku": "XXP-969190", "current_price": 51.98, "source_momentum_pattern": "Double Cross", "source_momentum_color": "Navy Dress Blues", "source_momentum_alt_sku": "T2-DC-31", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-DC-31", "uom": null, "width": ""}
+{"shopify_product_id": "6936688558131", "variant_id": "gid://shopify/ProductVariant/44802269315123", "sku": "XXP-969224", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Snowy Estate", "source_momentum_alt_sku": "T2-EG-01", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936688590899", "variant_id": "gid://shopify/ProductVariant/44802269610035", "sku": "XXP-969225", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "White Castle", "source_momentum_alt_sku": "T2-EG-02", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936688623667", "variant_id": "gid://shopify/ProductVariant/44802269773875", "sku": "XXP-969226", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Glass Reflections", "source_momentum_alt_sku": "T2-EG-03", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936688656435", "variant_id": "gid://shopify/ProductVariant/44802269970483", "sku": "XXP-969227", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Silver Gates", "source_momentum_alt_sku": "T2-EG-04", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936688689203", "variant_id": "gid://shopify/ProductVariant/44802270101555", "sku": "XXP-969228", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Deco Black", "source_momentum_alt_sku": "T2-EG-05", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936688721971", "variant_id": "gid://shopify/ProductVariant/44802270199859", "sku": "XXP-969229", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Icy Bridge", "source_momentum_alt_sku": "T2-EG-06", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936688787507", "variant_id": "gid://shopify/ProductVariant/44802270855219", "sku": "XXP-969230", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Corinthian Greige", "source_momentum_alt_sku": "T2-EG-07", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936688820275", "variant_id": "gid://shopify/ProductVariant/44802273345587", "sku": "XXP-969231", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Pewter Sculpture", "source_momentum_alt_sku": "T2-EG-08", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936688853043", "variant_id": "gid://shopify/ProductVariant/44802273509427", "sku": "XXP-969232", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Cathedral Grey", "source_momentum_alt_sku": "T2-EG-09", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936688885811", "variant_id": "gid://shopify/ProductVariant/44802273738803", "sku": "XXP-969233", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Pavilion Pearl", "source_momentum_alt_sku": "T2-EG-10", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936688918579", "variant_id": "gid://shopify/ProductVariant/44802273935411", "sku": "XXP-969234", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Stone House", "source_momentum_alt_sku": "T2-EG-11", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936688951347", "variant_id": "gid://shopify/ProductVariant/44802274590771", "sku": "XXP-969235", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Temple Taupe", "source_momentum_alt_sku": "T2-EG-12", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936688984115", "variant_id": "gid://shopify/ProductVariant/44802274721843", "sku": "XXP-969236", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Eiffel Metal", "source_momentum_alt_sku": "T2-EG-13", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936689016883", "variant_id": "gid://shopify/ProductVariant/44802278031411", "sku": "XXP-969237", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Taj Mahal Gleam", "source_momentum_alt_sku": "T2-EG-14", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936689049651", "variant_id": "gid://shopify/ProductVariant/44802278522931", "sku": "XXP-969238", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Golden Leaf", "source_momentum_alt_sku": "T2-EG-15", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936689082419", "variant_id": "gid://shopify/ProductVariant/44802278817843", "sku": "XXP-969239", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Dome Gold", "source_momentum_alt_sku": "T2-EG-16", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936689115187", "variant_id": "gid://shopify/ProductVariant/44802279079987", "sku": "XXP-969240", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Skyscraper Bronze", "source_momentum_alt_sku": "T2-EG-17", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-17", "uom": null, "width": ""}
+{"shopify_product_id": "6936689147955", "variant_id": "gid://shopify/ProductVariant/44802279374899", "sku": "XXP-969241", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Ivory Column", "source_momentum_alt_sku": "T2-EG-18", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-18", "uom": null, "width": ""}
+{"shopify_product_id": "6936689180723", "variant_id": "gid://shopify/ProductVariant/44802279604275", "sku": "XXP-969242", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Palace Pink", "source_momentum_alt_sku": "T2-EG-19", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-19", "uom": null, "width": ""}
+{"shopify_product_id": "6936689213491", "variant_id": "gid://shopify/ProductVariant/44802279866419", "sku": "XXP-969243", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Geometric Green", "source_momentum_alt_sku": "T2-EG-20", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-20", "uom": null, "width": ""}
+{"shopify_product_id": "6936689246259", "variant_id": "gid://shopify/ProductVariant/44802280095795", "sku": "XXP-969244", "current_price": 50.61, "source_momentum_pattern": "Structured", "source_momentum_color": "Blue Tower", "source_momentum_alt_sku": "T2-EG-21", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EG-21", "uom": null, "width": ""}
+{"shopify_product_id": "6936689279027", "variant_id": "gid://shopify/ProductVariant/44802280259635", "sku": "XXP-969245", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "Open Air", "source_momentum_alt_sku": "T2-EM-01", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936689311795", "variant_id": "gid://shopify/ProductVariant/44802280521779", "sku": "XXP-969246", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "Sky-Grey-Per", "source_momentum_alt_sku": "T2-EM-02", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936689344563", "variant_id": "gid://shopify/ProductVariant/44802280718387", "sku": "XXP-969247", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "Midtown Grey", "source_momentum_alt_sku": "T2-EM-03", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936689410099", "variant_id": "gid://shopify/ProductVariant/44802280914995", "sku": "XXP-969248", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "City Street", "source_momentum_alt_sku": "T2-EM-04", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936689508403", "variant_id": "gid://shopify/ProductVariant/44802281144371", "sku": "XXP-969249", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "Rising Star", "source_momentum_alt_sku": "T2-EM-05", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936689541171", "variant_id": "gid://shopify/ProductVariant/44802281340979", "sku": "XXP-969250", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "American Dream", "source_momentum_alt_sku": "T2-EM-06", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936689606707", "variant_id": "gid://shopify/ProductVariant/44802281537587", "sku": "XXP-969251", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "Foggy", "source_momentum_alt_sku": "T2-EM-07", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936689639475", "variant_id": "gid://shopify/ProductVariant/44802281734195", "sku": "XXP-969252", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "Kingdom Keys", "source_momentum_alt_sku": "T2-EM-08", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936689672243", "variant_id": "gid://shopify/ProductVariant/44802281930803", "sku": "XXP-969253", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "Lookin' Buff", "source_momentum_alt_sku": "T2-EM-09", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936689737779", "variant_id": "gid://shopify/ProductVariant/44802282160179", "sku": "XXP-969254", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "Golden Boy", "source_momentum_alt_sku": "T2-EM-10", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936689770547", "variant_id": "gid://shopify/ProductVariant/44802282324019", "sku": "XXP-969255", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "Concrete", "source_momentum_alt_sku": "T2-EM-11", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936689803315", "variant_id": "gid://shopify/ProductVariant/44802282586163", "sku": "XXP-969256", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "Observ-Fir-Tory", "source_momentum_alt_sku": "T2-EM-12", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936689836083", "variant_id": "gid://shopify/ProductVariant/44802282750003", "sku": "XXP-969257", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "Peacock Strut", "source_momentum_alt_sku": "T2-EM-13", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936689868851", "variant_id": "gid://shopify/ProductVariant/44802282946611", "sku": "XXP-969258", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "Color of Money", "source_momentum_alt_sku": "T2-EM-14", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936689901619", "variant_id": "gid://shopify/ProductVariant/44802283110451", "sku": "XXP-969259", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "Blue Note", "source_momentum_alt_sku": "T2-EM-15", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936689934387", "variant_id": "gid://shopify/ProductVariant/44802283143219", "sku": "XXP-969260", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "Blue Print", "source_momentum_alt_sku": "T2-EM-16", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936689999923", "variant_id": "gid://shopify/ProductVariant/44802283175987", "sku": "XXP-969261", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "Luscious", "source_momentum_alt_sku": "T2-EM-17", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-17", "uom": null, "width": ""}
+{"shopify_product_id": "6936690032691", "variant_id": "gid://shopify/ProductVariant/44802283307059", "sku": "XXP-969262", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "In the Red", "source_momentum_alt_sku": "T2-EM-18", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-18", "uom": null, "width": ""}
+{"shopify_product_id": "6936690065459", "variant_id": "gid://shopify/ProductVariant/44802283438131", "sku": "XXP-969263", "current_price": 51.98, "source_momentum_pattern": "Empire WC", "source_momentum_color": "Top Deck Toast", "source_momentum_alt_sku": "T2-EM-19", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-EM-19", "uom": null, "width": ""}
+{"shopify_product_id": "6936691179571", "variant_id": "gid://shopify/ProductVariant/44802283896883", "sku": "XXP-969280", "current_price": 57.05, "source_momentum_pattern": "Foiled", "source_momentum_color": "Iceberg", "source_momentum_alt_sku": "T2-FD-01", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FD-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936691212339", "variant_id": "gid://shopify/ProductVariant/44802284060723", "sku": "XXP-969281", "current_price": 57.05, "source_momentum_pattern": "Foiled", "source_momentum_color": "Rocky Mountain", "source_momentum_alt_sku": "T2-FD-02", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FD-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936691245107", "variant_id": "gid://shopify/ProductVariant/44802284322867", "sku": "XXP-969282", "current_price": 57.05, "source_momentum_pattern": "Foiled", "source_momentum_color": "Limestone", "source_momentum_alt_sku": "T2-FD-03", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FD-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936691277875", "variant_id": "gid://shopify/ProductVariant/44802284486707", "sku": "XXP-969283", "current_price": 57.05, "source_momentum_pattern": "Foiled", "source_momentum_color": "Cavern Clay", "source_momentum_alt_sku": "T2-FD-04", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FD-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936691310643", "variant_id": "gid://shopify/ProductVariant/44802284716083", "sku": "XXP-969284", "current_price": 57.05, "source_momentum_pattern": "Foiled", "source_momentum_color": "Navy Tin", "source_momentum_alt_sku": "T2-FD-05", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FD-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936691343411", "variant_id": "gid://shopify/ProductVariant/44802285010995", "sku": "XXP-969285", "current_price": 57.05, "source_momentum_pattern": "Foiled", "source_momentum_color": "Ironstone", "source_momentum_alt_sku": "T2-FD-06", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FD-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936691376179", "variant_id": "gid://shopify/ProductVariant/44802285174835", "sku": "XXP-969286", "current_price": 57.05, "source_momentum_pattern": "Foiled", "source_momentum_color": "Lava", "source_momentum_alt_sku": "T2-FD-07", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FD-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936691408947", "variant_id": "gid://shopify/ProductVariant/44802285371443", "sku": "XXP-969287", "current_price": 57.05, "source_momentum_pattern": "Foiled", "source_momentum_color": "Moss Agate", "source_momentum_alt_sku": "T2-FD-08", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FD-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936691474483", "variant_id": "gid://shopify/ProductVariant/44802285600819", "sku": "XXP-969288", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Baby's Breath", "source_momentum_alt_sku": "T2-FT-01", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936691507251", "variant_id": "gid://shopify/ProductVariant/44802285830195", "sku": "XXP-969289", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Sprout", "source_momentum_alt_sku": "T2-FT-02", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936691540019", "variant_id": "gid://shopify/ProductVariant/44802286059571", "sku": "XXP-969290", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Lagoon", "source_momentum_alt_sku": "T2-FT-03", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936691605555", "variant_id": "gid://shopify/ProductVariant/44802286256179", "sku": "XXP-969291", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Snowdrop", "source_momentum_alt_sku": "T2-FT-04", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936691638323", "variant_id": "gid://shopify/ProductVariant/44802286485555", "sku": "XXP-969292", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Cool Grey", "source_momentum_alt_sku": "T2-FT-05", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936691671091", "variant_id": "gid://shopify/ProductVariant/44802286616627", "sku": "XXP-969293", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Deep Blue", "source_momentum_alt_sku": "T2-FT-06", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936691736627", "variant_id": "gid://shopify/ProductVariant/44802286813235", "sku": "XXP-969294", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Pearled", "source_momentum_alt_sku": "T2-FT-07", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936691802163", "variant_id": "gid://shopify/ProductVariant/44802287009843", "sku": "XXP-969295", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Quill", "source_momentum_alt_sku": "T2-FT-08", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936691834931", "variant_id": "gid://shopify/ProductVariant/44802287173683", "sku": "XXP-969296", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Gravel", "source_momentum_alt_sku": "T2-FT-09", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936691900467", "variant_id": "gid://shopify/ProductVariant/44802287403059", "sku": "XXP-969297", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Cashew", "source_momentum_alt_sku": "T2-FT-10", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936691933235", "variant_id": "gid://shopify/ProductVariant/44802287632435", "sku": "XXP-969298", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Pumice", "source_momentum_alt_sku": "T2-FT-11", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936691966003", "variant_id": "gid://shopify/ProductVariant/44802287861811", "sku": "XXP-969299", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Henna", "source_momentum_alt_sku": "T2-FT-12", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936691998771", "variant_id": "gid://shopify/ProductVariant/44802288091187", "sku": "XXP-969300", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Putty", "source_momentum_alt_sku": "T2-FT-13", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936692031539", "variant_id": "gid://shopify/ProductVariant/44802288353331", "sku": "XXP-969301", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Golden Flicker", "source_momentum_alt_sku": "T2-FT-14", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936692064307", "variant_id": "gid://shopify/ProductVariant/44802288681011", "sku": "XXP-969302", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Mushroom", "source_momentum_alt_sku": "T2-FT-15", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936692097075", "variant_id": "gid://shopify/ProductVariant/44802288975923", "sku": "XXP-969303", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Ballet Slipper", "source_momentum_alt_sku": "T2-FT-16", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936692129843", "variant_id": "gid://shopify/ProductVariant/44802289139763", "sku": "XXP-969304", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Terra Cotta", "source_momentum_alt_sku": "T2-FT-17", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-17", "uom": null, "width": ""}
+{"shopify_product_id": "6936692162611", "variant_id": "gid://shopify/ProductVariant/44802289369139", "sku": "XXP-969305", "current_price": 51.98, "source_momentum_pattern": "Flutter", "source_momentum_color": "Heartthrob", "source_momentum_alt_sku": "T2-FT-18", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-FT-18", "uom": null, "width": ""}
+{"shopify_product_id": "6936692195379", "variant_id": "gid://shopify/ProductVariant/44802289631283", "sku": "XXP-969306", "current_price": 51.98, "source_momentum_pattern": "Go Gilded", "source_momentum_color": "Shadow Blocks", "source_momentum_alt_sku": "T2-GD-01", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GD-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936692228147", "variant_id": "gid://shopify/ProductVariant/44802289696819", "sku": "XXP-969307", "current_price": 51.98, "source_momentum_pattern": "Go Gilded", "source_momentum_color": "Grey Resin", "source_momentum_alt_sku": "T2-GD-02", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GD-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936692260915", "variant_id": "gid://shopify/ProductVariant/44802289926195", "sku": "XXP-969308", "current_price": 51.98, "source_momentum_pattern": "Go Gilded", "source_momentum_color": "Plum", "source_momentum_alt_sku": "T2-GD-03", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GD-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936692326451", "variant_id": "gid://shopify/ProductVariant/44802289991731", "sku": "XXP-969309", "current_price": 51.98, "source_momentum_pattern": "Go Gilded", "source_momentum_color": "Silver Touch", "source_momentum_alt_sku": "T2-GD-04", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GD-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936692359219", "variant_id": "gid://shopify/ProductVariant/44802290024499", "sku": "XXP-969310", "current_price": 51.98, "source_momentum_pattern": "Go Gilded", "source_momentum_color": "Spun Cotton", "source_momentum_alt_sku": "T2-GD-05", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GD-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936692391987", "variant_id": "gid://shopify/ProductVariant/44802290188339", "sku": "XXP-969311", "current_price": 51.98, "source_momentum_pattern": "Go Gilded", "source_momentum_color": "Cotton Boll", "source_momentum_alt_sku": "T2-GD-06", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GD-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936692424755", "variant_id": "gid://shopify/ProductVariant/44802290417715", "sku": "XXP-969312", "current_price": 51.98, "source_momentum_pattern": "Go Gilded", "source_momentum_color": "Golden Essence", "source_momentum_alt_sku": "T2-GD-07", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GD-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936692457523", "variant_id": "gid://shopify/ProductVariant/44802290516019", "sku": "XXP-969313", "current_price": 51.98, "source_momentum_pattern": "Go Gilded", "source_momentum_color": "Golden Pumice", "source_momentum_alt_sku": "T2-GD-08", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GD-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936692490291", "variant_id": "gid://shopify/ProductVariant/44802290745395", "sku": "XXP-969314", "current_price": 51.98, "source_momentum_pattern": "Go Gilded", "source_momentum_color": "Sandy Leaf", "source_momentum_alt_sku": "T2-GD-09", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GD-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936692523059", "variant_id": "gid://shopify/ProductVariant/44802290974771", "sku": "XXP-969315", "current_price": 51.98, "source_momentum_pattern": "Go Gilded", "source_momentum_color": "Miami Sunset", "source_momentum_alt_sku": "T2-GD-10", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GD-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936692555827", "variant_id": "gid://shopify/ProductVariant/44802291302451", "sku": "XXP-969316", "current_price": 51.98, "source_momentum_pattern": "Go Gilded", "source_momentum_color": "Peeking Plum", "source_momentum_alt_sku": "T2-GD-11", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GD-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936692588595", "variant_id": "gid://shopify/ProductVariant/44802291597363", "sku": "XXP-969317", "current_price": 51.98, "source_momentum_pattern": "Go Gilded", "source_momentum_color": "Copper Berry", "source_momentum_alt_sku": "T2-GD-12", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GD-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936692621363", "variant_id": "gid://shopify/ProductVariant/44802291892275", "sku": "XXP-969318", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Magnolia", "source_momentum_alt_sku": "T2-GE-01", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936692654131", "variant_id": "gid://shopify/ProductVariant/44802292285491", "sku": "XXP-969319", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Silver Wave", "source_momentum_alt_sku": "T2-GE-02", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936692686899", "variant_id": "gid://shopify/ProductVariant/44802292842547", "sku": "XXP-969320", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Indi-Glow", "source_momentum_alt_sku": "T2-GE-03", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936692719667", "variant_id": "gid://shopify/ProductVariant/44802293202995", "sku": "XXP-969321", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Pearl Wash", "source_momentum_alt_sku": "T2-GE-04", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936692785203", "variant_id": "gid://shopify/ProductVariant/44802293596211", "sku": "XXP-969322", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Platinum Mist", "source_momentum_alt_sku": "T2-GE-05", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936692850739", "variant_id": "gid://shopify/ProductVariant/44802293923891", "sku": "XXP-969323", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Black Mondo", "source_momentum_alt_sku": "T2-GE-06", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936692883507", "variant_id": "gid://shopify/ProductVariant/44802294284339", "sku": "XXP-969324", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Winter Garden", "source_momentum_alt_sku": "T2-GE-07", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936692916275", "variant_id": "gid://shopify/ProductVariant/44802294612019", "sku": "XXP-969325", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Pewter Spell", "source_momentum_alt_sku": "T2-GE-08", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936692981811", "variant_id": "gid://shopify/ProductVariant/44802297626675", "sku": "XXP-969326", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Dusky Grey", "source_momentum_alt_sku": "T2-GE-09", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936693014579", "variant_id": "gid://shopify/ProductVariant/44802297954355", "sku": "XXP-969327", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Crme De La Crme", "source_momentum_alt_sku": "T2-GE-10", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936693047347", "variant_id": "gid://shopify/ProductVariant/44802298347571", "sku": "XXP-969328", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Golden Raffia", "source_momentum_alt_sku": "T2-GE-11", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936693112883", "variant_id": "gid://shopify/ProductVariant/44802298609715", "sku": "XXP-969329", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Majestic Mocha", "source_momentum_alt_sku": "T2-GE-12", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936693145651", "variant_id": "gid://shopify/ProductVariant/44802298970163", "sku": "XXP-969330", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Glitzy Grass", "source_momentum_alt_sku": "T2-GE-13", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936693178419", "variant_id": "gid://shopify/ProductVariant/44802300117043", "sku": "XXP-969331", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Copper Kiss", "source_momentum_alt_sku": "T2-GE-14", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936693243955", "variant_id": "gid://shopify/ProductVariant/44802300346419", "sku": "XXP-969332", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Eminent Bronze", "source_momentum_alt_sku": "T2-GE-15", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936693276723", "variant_id": "gid://shopify/ProductVariant/44802300641331", "sku": "XXP-969333", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Pink Pampas", "source_momentum_alt_sku": "T2-GE-16", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936693309491", "variant_id": "gid://shopify/ProductVariant/44802301624371", "sku": "XXP-969334", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Rustic Ambition", "source_momentum_alt_sku": "T2-GE-17", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-17", "uom": null, "width": ""}
+{"shopify_product_id": "6936693342259", "variant_id": "gid://shopify/ProductVariant/44802301853747", "sku": "XXP-969335", "current_price": 71.6, "source_momentum_pattern": "Grass Envy", "source_momentum_color": "Lush Forest", "source_momentum_alt_sku": "T2-GE-18", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GE-18", "uom": null, "width": ""}
+{"shopify_product_id": "6936693375027", "variant_id": "gid://shopify/ProductVariant/44802302083123", "sku": "XXP-969336", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "Foiled", "source_momentum_alt_sku": "T2-GM-01", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936693407795", "variant_id": "gid://shopify/ProductVariant/44802302279731", "sku": "XXP-969337", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "Foiled", "source_momentum_alt_sku": "T2-GM-01", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936693440563", "variant_id": "gid://shopify/ProductVariant/44802302443571", "sku": "XXP-969338", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "Grey Glint", "source_momentum_alt_sku": "T2-GM-02", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936693473331", "variant_id": "gid://shopify/ProductVariant/44802302607411", "sku": "XXP-969339", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "Polished Pewter", "source_momentum_alt_sku": "T2-GM-03", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936693506099", "variant_id": "gid://shopify/ProductVariant/44802302771251", "sku": "XXP-969340", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "Navy Shimmer", "source_momentum_alt_sku": "T2-GM-04", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936693538867", "variant_id": "gid://shopify/ProductVariant/44802302804019", "sku": "XXP-969341", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "White Sparkle", "source_momentum_alt_sku": "T2-GM-05", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936693571635", "variant_id": "gid://shopify/ProductVariant/44802302836787", "sku": "XXP-969342", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "Glowing Greige", "source_momentum_alt_sku": "T2-GM-06", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936693604403", "variant_id": "gid://shopify/ProductVariant/44802303000627", "sku": "XXP-969343", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "Glamourous Khaki", "source_momentum_alt_sku": "T2-GM-07", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936693637171", "variant_id": "gid://shopify/ProductVariant/44802303197235", "sku": "XXP-969344", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "Twinkling Taupe", "source_momentum_alt_sku": "T2-GM-08", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936693669939", "variant_id": "gid://shopify/ProductVariant/44802303426611", "sku": "XXP-969345", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "Bright Cream", "source_momentum_alt_sku": "T2-GM-09", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936693735475", "variant_id": "gid://shopify/ProductVariant/44802303852595", "sku": "XXP-969346", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "Warm Satin", "source_momentum_alt_sku": "T2-GM-10", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936693768243", "variant_id": "gid://shopify/ProductVariant/44802304081971", "sku": "XXP-969348", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "Radiant Tan", "source_momentum_alt_sku": "T2-GM-11", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936693801011", "variant_id": "gid://shopify/ProductVariant/44802304344115", "sku": "XXP-969349", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "Golden Glisten", "source_momentum_alt_sku": "T2-GM-12", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936693833779", "variant_id": "gid://shopify/ProductVariant/44802304573491", "sku": "XXP-969350", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "Frosted Rose", "source_momentum_alt_sku": "T2-GM-13", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936693899315", "variant_id": "gid://shopify/ProductVariant/44802304770099", "sku": "XXP-969351", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "Rusty Sheen", "source_momentum_alt_sku": "T2-GM-14", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936693932083", "variant_id": "gid://shopify/ProductVariant/44802304901171", "sku": "XXP-969352", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "Mulberry Flicker", "source_momentum_alt_sku": "T2-GM-15", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936693964851", "variant_id": "gid://shopify/ProductVariant/44802305261619", "sku": "XXP-969353", "current_price": 63.86, "source_momentum_pattern": "Glimmer Linen", "source_momentum_color": "Teal Luster", "source_momentum_alt_sku": "T2-GM-16", "new_price": 63.86, "hw_price": 63.86, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GM-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936693997619", "variant_id": "gid://shopify/ProductVariant/44802305523763", "sku": "XXP-969355", "current_price": 58.71, "source_momentum_pattern": "Go Gilded Grand", "source_momentum_color": "Crystal Cubes", "source_momentum_alt_sku": "T2-GO-01", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GO-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936694030387", "variant_id": "gid://shopify/ProductVariant/44802305753139", "sku": "XXP-969356", "current_price": 58.71, "source_momentum_pattern": "Go Gilded Grand", "source_momentum_color": "Cracks of Honey", "source_momentum_alt_sku": "T2-GO-02", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GO-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936694063155", "variant_id": "gid://shopify/ProductVariant/44802305982515", "sku": "XXP-969357", "current_price": 58.71, "source_momentum_pattern": "Go Gilded Grand", "source_momentum_color": "Reflections", "source_momentum_alt_sku": "T2-GO-03", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GO-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936694095923", "variant_id": "gid://shopify/ProductVariant/44802306211891", "sku": "XXP-969358", "current_price": 58.71, "source_momentum_pattern": "Go Gilded Grand", "source_momentum_color": "Silver Lining", "source_momentum_alt_sku": "T2-GO-04", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GO-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936694128691", "variant_id": "gid://shopify/ProductVariant/44802306441267", "sku": "XXP-969360", "current_price": 58.71, "source_momentum_pattern": "Go Gilded Grand", "source_momentum_color": "Pumice", "source_momentum_alt_sku": "T2-GO-05", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GO-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936694161459", "variant_id": "gid://shopify/ProductVariant/44802306637875", "sku": "XXP-969361", "current_price": 58.71, "source_momentum_pattern": "Go Gilded Grand", "source_momentum_color": "Sandy Leaf", "source_momentum_alt_sku": "T2-GO-06", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GO-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936694194227", "variant_id": "gid://shopify/ProductVariant/44802306867251", "sku": "XXP-969362", "current_price": 58.71, "source_momentum_pattern": "Go Gilded Grand", "source_momentum_color": "Plum Sheen", "source_momentum_alt_sku": "T2-GO-07", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GO-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936694226995", "variant_id": "gid://shopify/ProductVariant/44802307063859", "sku": "XXP-969363", "current_price": 58.71, "source_momentum_pattern": "Go Gilded Grand", "source_momentum_color": "Burnt Caramel", "source_momentum_alt_sku": "T2-GO-08", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GO-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936695078963", "variant_id": "gid://shopify/ProductVariant/44802307784755", "sku": "XXP-969388", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Cotton", "source_momentum_alt_sku": "T2-GS-01", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936695111731", "variant_id": "gid://shopify/ProductVariant/44802310438963", "sku": "XXP-969389", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Silver Lining", "source_momentum_alt_sku": "T2-GS-02", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936695144499", "variant_id": "gid://shopify/ProductVariant/44802310864947", "sku": "XXP-969390", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Grey Resin", "source_momentum_alt_sku": "T2-GS-03", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936695177267", "variant_id": "gid://shopify/ProductVariant/44802311061555", "sku": "XXP-969391", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Sweet Indigo", "source_momentum_alt_sku": "T2-GS-04", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936695210035", "variant_id": "gid://shopify/ProductVariant/44802311258163", "sku": "XXP-969392", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Crystal", "source_momentum_alt_sku": "T2-GS-05", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936695242803", "variant_id": "gid://shopify/ProductVariant/44802311520307", "sku": "XXP-969393", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Glass", "source_momentum_alt_sku": "T2-GS-06", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936695275571", "variant_id": "gid://shopify/ProductVariant/44802311749683", "sku": "XXP-969394", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Reflections", "source_momentum_alt_sku": "T2-GS-07", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936695308339", "variant_id": "gid://shopify/ProductVariant/44802311946291", "sku": "XXP-969395", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Shadow", "source_momentum_alt_sku": "T2-GS-08", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936695341107", "variant_id": "gid://shopify/ProductVariant/44802312142899", "sku": "XXP-969396", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Pumice", "source_momentum_alt_sku": "T2-GS-09", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936695406643", "variant_id": "gid://shopify/ProductVariant/44802312339507", "sku": "XXP-969397", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Creamy Taupe", "source_momentum_alt_sku": "T2-GS-10", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936695439411", "variant_id": "gid://shopify/ProductVariant/44802312568883", "sku": "XXP-969398", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Cement", "source_momentum_alt_sku": "T2-GS-11", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936695472179", "variant_id": "gid://shopify/ProductVariant/44802312667187", "sku": "XXP-969399", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Plum", "source_momentum_alt_sku": "T2-GS-12", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936695504947", "variant_id": "gid://shopify/ProductVariant/44802312699955", "sku": "XXP-969400", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "White Tea", "source_momentum_alt_sku": "T2-GS-13", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936695537715", "variant_id": "gid://shopify/ProductVariant/44802312732723", "sku": "XXP-969401", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Sandy", "source_momentum_alt_sku": "T2-GS-14", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936695570483", "variant_id": "gid://shopify/ProductVariant/44802312765491", "sku": "XXP-969402", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Agave", "source_momentum_alt_sku": "T2-GS-15", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936695636019", "variant_id": "gid://shopify/ProductVariant/44802313060403", "sku": "XXP-969403", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Tropical Lagoon", "source_momentum_alt_sku": "T2-GS-16", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936695668787", "variant_id": "gid://shopify/ProductVariant/44802313257011", "sku": "XXP-969404", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Ivory Frost", "source_momentum_alt_sku": "T2-GS-17", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-17", "uom": null, "width": ""}
+{"shopify_product_id": "6936695734323", "variant_id": "gid://shopify/ProductVariant/44802313420851", "sku": "XXP-969405", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Golden Essence", "source_momentum_alt_sku": "T2-GS-18", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-18", "uom": null, "width": ""}
+{"shopify_product_id": "6936695767091", "variant_id": "gid://shopify/ProductVariant/44802313617459", "sku": "XXP-969406", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Honey Gold", "source_momentum_alt_sku": "T2-GS-19", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-19", "uom": null, "width": ""}
+{"shopify_product_id": "6936695799859", "variant_id": "gid://shopify/ProductVariant/44802313846835", "sku": "XXP-969407", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Caramel", "source_momentum_alt_sku": "T2-GS-20", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-20", "uom": null, "width": ""}
+{"shopify_product_id": "6936695832627", "variant_id": "gid://shopify/ProductVariant/44802314174515", "sku": "XXP-969408", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Auger", "source_momentum_alt_sku": "T2-GS-21", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-21", "uom": null, "width": ""}
+{"shopify_product_id": "6936695865395", "variant_id": "gid://shopify/ProductVariant/44802314403891", "sku": "XXP-969409", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Strawberry Blonde", "source_momentum_alt_sku": "T2-GS-22", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-22", "uom": null, "width": ""}
+{"shopify_product_id": "6936695898163", "variant_id": "gid://shopify/ProductVariant/44802314633267", "sku": "XXP-969410", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Miami Sunset", "source_momentum_alt_sku": "T2-GS-23", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-23", "uom": null, "width": ""}
+{"shopify_product_id": "6936695930931", "variant_id": "gid://shopify/ProductVariant/44802314895411", "sku": "XXP-969411", "current_price": 50.61, "source_momentum_pattern": "Go Gilded Linen", "source_momentum_color": "Copper", "source_momentum_alt_sku": "T2-GS-24", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GS-24", "uom": null, "width": ""}
+{"shopify_product_id": "6936695963699", "variant_id": "gid://shopify/ProductVariant/44802315124787", "sku": "XXP-969412", "current_price": 57.05, "source_momentum_pattern": "Go Outside", "source_momentum_color": "Silver Lining", "source_momentum_alt_sku": "T2-GT-01", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GT-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936695996467", "variant_id": "gid://shopify/ProductVariant/44802315354163", "sku": "XXP-969413", "current_price": 57.05, "source_momentum_pattern": "Go Outside", "source_momentum_color": "Black Tea", "source_momentum_alt_sku": "T2-GT-02", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GT-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936696029235", "variant_id": "gid://shopify/ProductVariant/44802315518003", "sku": "XXP-969414", "current_price": 57.05, "source_momentum_pattern": "Go Outside", "source_momentum_color": "White Tea", "source_momentum_alt_sku": "T2-GT-03", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GT-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936696062003", "variant_id": "gid://shopify/ProductVariant/44802315780147", "sku": "XXP-969415", "current_price": 57.05, "source_momentum_pattern": "Go Outside", "source_momentum_color": "Cement", "source_momentum_alt_sku": "T2-GT-04", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GT-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936696094771", "variant_id": "gid://shopify/ProductVariant/44802315976755", "sku": "XXP-969416", "current_price": 57.05, "source_momentum_pattern": "Go Outside", "source_momentum_color": "Green Tea", "source_momentum_alt_sku": "T2-GT-05", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GT-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936696127539", "variant_id": "gid://shopify/ProductVariant/44802316173363", "sku": "XXP-969417", "current_price": 57.05, "source_momentum_pattern": "Go Outside", "source_momentum_color": "Golden Essence", "source_momentum_alt_sku": "T2-GT-06", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GT-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936696160307", "variant_id": "gid://shopify/ProductVariant/44802316369971", "sku": "XXP-969418", "current_price": 57.05, "source_momentum_pattern": "Go Outside", "source_momentum_color": "Auger", "source_momentum_alt_sku": "T2-GT-07", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GT-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936696225843", "variant_id": "gid://shopify/ProductVariant/44802319220787", "sku": "XXP-969419", "current_price": 57.05, "source_momentum_pattern": "Go Outside", "source_momentum_color": "Plum", "source_momentum_alt_sku": "T2-GT-08", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-GT-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936696258611", "variant_id": "gid://shopify/ProductVariant/44802319482931", "sku": "XXP-969420", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Fog", "source_momentum_alt_sku": "T2-HR-01", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936696291379", "variant_id": "gid://shopify/ProductVariant/44802319679539", "sku": "XXP-969421", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Gris", "source_momentum_alt_sku": "T2-HR-02", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936696324147", "variant_id": "gid://shopify/ProductVariant/44802319941683", "sku": "XXP-969422", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Soot", "source_momentum_alt_sku": "T2-HR-03", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936696356915", "variant_id": "gid://shopify/ProductVariant/44802320072755", "sku": "XXP-969423", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Frost", "source_momentum_alt_sku": "T2-HR-04", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936696389683", "variant_id": "gid://shopify/ProductVariant/44802320236595", "sku": "XXP-969424", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Dapple", "source_momentum_alt_sku": "T2-HR-05", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936696422451", "variant_id": "gid://shopify/ProductVariant/44802320531507", "sku": "XXP-969425", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Anvil", "source_momentum_alt_sku": "T2-HR-06", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936696455219", "variant_id": "gid://shopify/ProductVariant/44802320760883", "sku": "XXP-969426", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Bone", "source_momentum_alt_sku": "T2-HR-07", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936696487987", "variant_id": "gid://shopify/ProductVariant/44802320891955", "sku": "XXP-969427", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Dove", "source_momentum_alt_sku": "T2-HR-08", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936696520755", "variant_id": "gid://shopify/ProductVariant/44802321055795", "sku": "XXP-969428", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Taupe", "source_momentum_alt_sku": "T2-HR-09", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936696553523", "variant_id": "gid://shopify/ProductVariant/44802321285171", "sku": "XXP-969429", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Blond", "source_momentum_alt_sku": "T2-HR-10", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936696586291", "variant_id": "gid://shopify/ProductVariant/44802321481779", "sku": "XXP-969430", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Linen", "source_momentum_alt_sku": "T2-HR-11", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936696619059", "variant_id": "gid://shopify/ProductVariant/44802321678387", "sku": "XXP-969431", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Vintage", "source_momentum_alt_sku": "T2-HR-12", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936696684595", "variant_id": "gid://shopify/ProductVariant/44802321874995", "sku": "XXP-969432", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Meadow", "source_momentum_alt_sku": "T2-HR-13", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936696717363", "variant_id": "gid://shopify/ProductVariant/44802322038835", "sku": "XXP-969433", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Ginger", "source_momentum_alt_sku": "T2-HR-14", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936696750131", "variant_id": "gid://shopify/ProductVariant/44802322137139", "sku": "XXP-969434", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Plum", "source_momentum_alt_sku": "T2-HR-15", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936696782899", "variant_id": "gid://shopify/ProductVariant/44802322169907", "sku": "XXP-969435", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Placid", "source_momentum_alt_sku": "T2-HR-16", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936696815667", "variant_id": "gid://shopify/ProductVariant/44802322202675", "sku": "XXP-969436", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Yacht", "source_momentum_alt_sku": "T2-HR-17", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-17", "uom": null, "width": ""}
+{"shopify_product_id": "6936696848435", "variant_id": "gid://shopify/ProductVariant/44802322399283", "sku": "XXP-969437", "current_price": 48.58, "source_momentum_pattern": "Herringbone Row", "source_momentum_color": "Marino", "source_momentum_alt_sku": "T2-HR-18", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-HR-18", "uom": null, "width": ""}
+{"shopify_product_id": "6936696913971", "variant_id": "gid://shopify/ProductVariant/44802322661427", "sku": "XXP-969438", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Ivory", "source_momentum_alt_sku": "T2-LH-01", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936696946739", "variant_id": "gid://shopify/ProductVariant/44802322825267", "sku": "XXP-969439", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Falling Star", "source_momentum_alt_sku": "T2-LH-02", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936696979507", "variant_id": "gid://shopify/ProductVariant/44802323054643", "sku": "XXP-969440", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Amber", "source_momentum_alt_sku": "T2-LH-03", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936697012275", "variant_id": "gid://shopify/ProductVariant/44802323284019", "sku": "XXP-969441", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Slate", "source_momentum_alt_sku": "T2-LH-04", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936697045043", "variant_id": "gid://shopify/ProductVariant/44802323644467", "sku": "XXP-969442", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Pearl", "source_momentum_alt_sku": "T2-LH-05", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936697077811", "variant_id": "gid://shopify/ProductVariant/44802323808307", "sku": "XXP-969443", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Morganite", "source_momentum_alt_sku": "T2-LH-06", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936697110579", "variant_id": "gid://shopify/ProductVariant/44802324234291", "sku": "XXP-969444", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Axinite", "source_momentum_alt_sku": "T2-LH-07", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936697176115", "variant_id": "gid://shopify/ProductVariant/44802324463667", "sku": "XXP-969445", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Currant", "source_momentum_alt_sku": "T2-LH-08", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936697208883", "variant_id": "gid://shopify/ProductVariant/44802325020723", "sku": "XXP-969446", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Silver Mist", "source_momentum_alt_sku": "T2-LH-09", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936697241651", "variant_id": "gid://shopify/ProductVariant/44802325217331", "sku": "XXP-969447", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Quartz", "source_momentum_alt_sku": "T2-LH-10", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936697274419", "variant_id": "gid://shopify/ProductVariant/44802325446707", "sku": "XXP-969448", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Sand", "source_momentum_alt_sku": "T2-LH-11", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936697339955", "variant_id": "gid://shopify/ProductVariant/44802325807155", "sku": "XXP-969449", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Earthy", "source_momentum_alt_sku": "T2-LH-12", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936697372723", "variant_id": "gid://shopify/ProductVariant/44802326069299", "sku": "XXP-969450", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Warm Stone", "source_momentum_alt_sku": "T2-LH-13", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936697405491", "variant_id": "gid://shopify/ProductVariant/44802326233139", "sku": "XXP-969451", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Emerald", "source_momentum_alt_sku": "T2-LH-14", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936697471027", "variant_id": "gid://shopify/ProductVariant/44802326822963", "sku": "XXP-969452", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Cloud Grey", "source_momentum_alt_sku": "T2-LH-15", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936697503795", "variant_id": "gid://shopify/ProductVariant/44802327052339", "sku": "XXP-969453", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "LAPIS*", "source_momentum_alt_sku": "T2-LH-16", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936697536563", "variant_id": "gid://shopify/ProductVariant/44802327248947", "sku": "XXP-969454", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Blue Spruce", "source_momentum_alt_sku": "T2-LH-17", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-17", "uom": null, "width": ""}
+{"shopify_product_id": "6936697602099", "variant_id": "gid://shopify/ProductVariant/44802327707699", "sku": "XXP-969455", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Sapphire", "source_momentum_alt_sku": "T2-LH-18", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-18", "uom": null, "width": ""}
+{"shopify_product_id": "6936697634867", "variant_id": "gid://shopify/ProductVariant/44802327838771", "sku": "XXP-969456", "current_price": 51.98, "source_momentum_pattern": "Couture Stitch", "source_momentum_color": "Charcoal", "source_momentum_alt_sku": "T2-LH-19", "new_price": 51.98, "hw_price": 51.98, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LH-19", "uom": null, "width": ""}
+{"shopify_product_id": "6936697667635", "variant_id": "gid://shopify/ProductVariant/44802328068147", "sku": "XXP-969457", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Gravel", "source_momentum_alt_sku": "T2-LK-01", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936697733171", "variant_id": "gid://shopify/ProductVariant/44802328363059", "sku": "XXP-969458", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Iron", "source_momentum_alt_sku": "T2-LK-02", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936697765939", "variant_id": "gid://shopify/ProductVariant/44802328690739", "sku": "XXP-969459", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Shade", "source_momentum_alt_sku": "T2-LK-03", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936697798707", "variant_id": "gid://shopify/ProductVariant/44802329149491", "sku": "XXP-969460", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Navy", "source_momentum_alt_sku": "T2-LK-04", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936697831475", "variant_id": "gid://shopify/ProductVariant/44802329804851", "sku": "XXP-969461", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Dove", "source_momentum_alt_sku": "T2-LK-05", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936697864243", "variant_id": "gid://shopify/ProductVariant/44802331082803", "sku": "XXP-969462", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Almond", "source_momentum_alt_sku": "T2-LK-06", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936697897011", "variant_id": "gid://shopify/ProductVariant/44802331672627", "sku": "XXP-969463", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Sand Dune", "source_momentum_alt_sku": "T2-LK-07", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936698028083", "variant_id": "gid://shopify/ProductVariant/44802331934771", "sku": "XXP-969464", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Black Ink", "source_momentum_alt_sku": "T2-LK-08", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936698060851", "variant_id": "gid://shopify/ProductVariant/44802332033075", "sku": "XXP-969465", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Off White", "source_momentum_alt_sku": "T2-LK-09", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936698093619", "variant_id": "gid://shopify/ProductVariant/44802332098611", "sku": "XXP-969466", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Calming Cream", "source_momentum_alt_sku": "T2-LK-10", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936698126387", "variant_id": "gid://shopify/ProductVariant/44802332327987", "sku": "XXP-969467", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Maple", "source_momentum_alt_sku": "T2-LK-11", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936698159155", "variant_id": "gid://shopify/ProductVariant/44802332557363", "sku": "XXP-969468", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Plum", "source_momentum_alt_sku": "T2-LK-12", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936698191923", "variant_id": "gid://shopify/ProductVariant/44802332753971", "sku": "XXP-969469", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Key Lime", "source_momentum_alt_sku": "T2-LK-13", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936698257459", "variant_id": "gid://shopify/ProductVariant/44802332983347", "sku": "XXP-969470", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Olive", "source_momentum_alt_sku": "T2-LK-14", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936698290227", "variant_id": "gid://shopify/ProductVariant/44802333179955", "sku": "XXP-969471", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Teal", "source_momentum_alt_sku": "T2-LK-15", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936698322995", "variant_id": "gid://shopify/ProductVariant/44802333343795", "sku": "XXP-969472", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Lapis", "source_momentum_alt_sku": "T2-LK-16", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936698355763", "variant_id": "gid://shopify/ProductVariant/44802333605939", "sku": "XXP-969473", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Peony", "source_momentum_alt_sku": "T2-LK-17", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-17", "uom": null, "width": ""}
+{"shopify_product_id": "6936698421299", "variant_id": "gid://shopify/ProductVariant/44802333802547", "sku": "XXP-969474", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Orange Burst", "source_momentum_alt_sku": "T2-LK-18", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-18", "uom": null, "width": ""}
+{"shopify_product_id": "6936698454067", "variant_id": "gid://shopify/ProductVariant/44802334031923", "sku": "XXP-969475", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Blue Jean", "source_momentum_alt_sku": "T2-LK-19", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LK-19", "uom": null, "width": ""}
+{"shopify_product_id": "6936698486835", "variant_id": "gid://shopify/ProductVariant/44802334228531", "sku": "XXP-969476", "current_price": 60.45, "source_momentum_pattern": "Lorelei Line", "source_momentum_color": "Emerald & White", "source_momentum_alt_sku": "T2-LL-01", "new_price": 60.45, "hw_price": 60.45, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LL-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936698552371", "variant_id": "gid://shopify/ProductVariant/44802334326835", "sku": "XXP-969477", "current_price": 60.45, "source_momentum_pattern": "Lorelei Line", "source_momentum_color": "Black & White", "source_momentum_alt_sku": "T2-LL-02", "new_price": 60.45, "hw_price": 60.45, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LL-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936698585139", "variant_id": "gid://shopify/ProductVariant/44802334621747", "sku": "XXP-969478", "current_price": 60.45, "source_momentum_pattern": "Lorelei Line", "source_momentum_color": "Indigo", "source_momentum_alt_sku": "T2-LL-03", "new_price": 60.45, "hw_price": 60.45, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LL-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936698650675", "variant_id": "gid://shopify/ProductVariant/44802334818355", "sku": "XXP-969479", "current_price": 60.45, "source_momentum_pattern": "Lorelei Line", "source_momentum_color": "Silver & White", "source_momentum_alt_sku": "T2-LL-04", "new_price": 60.45, "hw_price": 60.45, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LL-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936698683443", "variant_id": "gid://shopify/ProductVariant/44802335014963", "sku": "XXP-969480", "current_price": 60.45, "source_momentum_pattern": "Lorelei Line", "source_momentum_color": "Mountain Top", "source_momentum_alt_sku": "T2-LL-05", "new_price": 60.45, "hw_price": 60.45, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LL-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936698716211", "variant_id": "gid://shopify/ProductVariant/44802335277107", "sku": "XXP-969481", "current_price": 60.45, "source_momentum_pattern": "Lorelei Line", "source_momentum_color": "Grey Cliff", "source_momentum_alt_sku": "T2-LL-06", "new_price": 60.45, "hw_price": 60.45, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LL-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936698748979", "variant_id": "gid://shopify/ProductVariant/44802335440947", "sku": "XXP-969482", "current_price": 60.45, "source_momentum_pattern": "Lorelei Line", "source_momentum_color": "French White", "source_momentum_alt_sku": "T2-LL-07", "new_price": 60.45, "hw_price": 60.45, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LL-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936698781747", "variant_id": "gid://shopify/ProductVariant/44802335670323", "sku": "XXP-969483", "current_price": 60.45, "source_momentum_pattern": "Lorelei Line", "source_momentum_color": "Warm Milk", "source_momentum_alt_sku": "T2-LL-08", "new_price": 60.45, "hw_price": 60.45, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LL-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936698814515", "variant_id": "gid://shopify/ProductVariant/44802335899699", "sku": "XXP-969484", "current_price": 60.45, "source_momentum_pattern": "Lorelei Line", "source_momentum_color": "Iron Ore", "source_momentum_alt_sku": "T2-LL-09", "new_price": 60.45, "hw_price": 60.45, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LL-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936698847283", "variant_id": "gid://shopify/ProductVariant/44802336129075", "sku": "XXP-969485", "current_price": 60.45, "source_momentum_pattern": "Lorelei Line", "source_momentum_color": "Delicate", "source_momentum_alt_sku": "T2-LL-10", "new_price": 60.45, "hw_price": 60.45, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LL-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936698880051", "variant_id": "gid://shopify/ProductVariant/44802338947123", "sku": "XXP-969486", "current_price": 60.45, "source_momentum_pattern": "Lorelei Line", "source_momentum_color": "Sweet Nectar", "source_momentum_alt_sku": "T2-LL-11", "new_price": 60.45, "hw_price": 60.45, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LL-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936698912819", "variant_id": "gid://shopify/ProductVariant/44802339176499", "sku": "XXP-969487", "current_price": 60.45, "source_momentum_pattern": "Lorelei Line", "source_momentum_color": "Dark Bark", "source_momentum_alt_sku": "T2-LL-12", "new_price": 60.45, "hw_price": 60.45, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LL-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936698945587", "variant_id": "gid://shopify/ProductVariant/44802339373107", "sku": "XXP-969488", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Frosty White", "source_momentum_alt_sku": "T2-LS-01", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936699011123", "variant_id": "gid://shopify/ProductVariant/44802339536947", "sku": "XXP-969489", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Silvered", "source_momentum_alt_sku": "T2-LS-02", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936699043891", "variant_id": "gid://shopify/ProductVariant/44802339733555", "sku": "XXP-969490", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Artist's Grey", "source_momentum_alt_sku": "T2-LS-03", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936699076659", "variant_id": "gid://shopify/ProductVariant/44802339962931", "sku": "XXP-969491", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Jet Stream", "source_momentum_alt_sku": "T2-LS-04", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936699109427", "variant_id": "gid://shopify/ProductVariant/44802340225075", "sku": "XXP-969492", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Pearl Shimmer", "source_momentum_alt_sku": "T2-LS-05", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936699142195", "variant_id": "gid://shopify/ProductVariant/44802340454451", "sku": "XXP-969493", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Morning Dove", "source_momentum_alt_sku": "T2-LS-06", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936699207731", "variant_id": "gid://shopify/ProductVariant/44802340651059", "sku": "XXP-969494", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Storm Cloud", "source_momentum_alt_sku": "T2-LS-07", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936699240499", "variant_id": "gid://shopify/ProductVariant/44802340782131", "sku": "XXP-969495", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Majestic Plum", "source_momentum_alt_sku": "T2-LS-08", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936699273267", "variant_id": "gid://shopify/ProductVariant/44802340847667", "sku": "XXP-969496", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Warm Cream", "source_momentum_alt_sku": "T2-LS-09", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936699306035", "variant_id": "gid://shopify/ProductVariant/44802340880435", "sku": "XXP-969497", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Tempting Taupe", "source_momentum_alt_sku": "T2-LS-10", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936699371571", "variant_id": "gid://shopify/ProductVariant/44802340913203", "sku": "XXP-969498", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Khaki Kiss", "source_momentum_alt_sku": "T2-LS-11", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936699404339", "variant_id": "gid://shopify/ProductVariant/44802341109811", "sku": "XXP-969499", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Cuban Cigar", "source_momentum_alt_sku": "T2-LS-12", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936699437107", "variant_id": "gid://shopify/ProductVariant/44802341339187", "sku": "XXP-969500", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Gingered", "source_momentum_alt_sku": "T2-LS-13", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936699469875", "variant_id": "gid://shopify/ProductVariant/44802341503027", "sku": "XXP-969501", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Olive Branch", "source_momentum_alt_sku": "T2-LS-14", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936699502643", "variant_id": "gid://shopify/ProductVariant/44802341732403", "sku": "XXP-969502", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Lemon Verbena", "source_momentum_alt_sku": "T2-LS-15", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936699535411", "variant_id": "gid://shopify/ProductVariant/44802341896243", "sku": "XXP-969503", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Al Pesto", "source_momentum_alt_sku": "T2-LS-16", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936699568179", "variant_id": "gid://shopify/ProductVariant/44802342092851", "sku": "XXP-969504", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Miami Surf", "source_momentum_alt_sku": "T2-LS-18", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-18", "uom": null, "width": ""}
+{"shopify_product_id": "6936699600947", "variant_id": "gid://shopify/ProductVariant/44802342354995", "sku": "XXP-969505", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Midnight", "source_momentum_alt_sku": "T2-LS-19", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-19", "uom": null, "width": ""}
+{"shopify_product_id": "6936699633715", "variant_id": "gid://shopify/ProductVariant/44802342518835", "sku": "XXP-969506", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Light Mist", "source_momentum_alt_sku": "T2-LS-20", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-20", "uom": null, "width": ""}
+{"shopify_product_id": "6936699666483", "variant_id": "gid://shopify/ProductVariant/44802342682675", "sku": "XXP-969507", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Moody Blue", "source_momentum_alt_sku": "T2-LS-21", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-21", "uom": null, "width": ""}
+{"shopify_product_id": "6936699699251", "variant_id": "gid://shopify/ProductVariant/44802342912051", "sku": "XXP-969508", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Vanilla", "source_momentum_alt_sku": "T2-LS-22", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-22", "uom": null, "width": ""}
+{"shopify_product_id": "6936699764787", "variant_id": "gid://shopify/ProductVariant/44802343141427", "sku": "XXP-969509", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Malted Milk", "source_momentum_alt_sku": "T2-LS-23", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-23", "uom": null, "width": ""}
+{"shopify_product_id": "6936699797555", "variant_id": "gid://shopify/ProductVariant/44802343370803", "sku": "XXP-969510", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Smokey Rose", "source_momentum_alt_sku": "T2-LS-24", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-24", "uom": null, "width": ""}
+{"shopify_product_id": "6936699830323", "variant_id": "gid://shopify/ProductVariant/44802343600179", "sku": "XXP-969511", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Canyon Clay", "source_momentum_alt_sku": "T2-LS-25", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-25", "uom": null, "width": ""}
+{"shopify_product_id": "6936699863091", "variant_id": "gid://shopify/ProductVariant/44802343829555", "sku": "XXP-969512", "current_price": 71.6, "source_momentum_pattern": "Lustre Strie", "source_momentum_color": "Rustic Rouge", "source_momentum_alt_sku": "T2-LS-26", "new_price": 71.6, "hw_price": 71.6, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LS-26", "uom": null, "width": ""}
+{"shopify_product_id": "6936700944435", "variant_id": "gid://shopify/ProductVariant/44802344026163", "sku": "XXP-969543", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Polished Pearl", "source_momentum_alt_sku": "T2-LX-01", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LX-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936700977203", "variant_id": "gid://shopify/ProductVariant/44802344222771", "sku": "XXP-969544", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Chromium", "source_momentum_alt_sku": "T2-LX-02", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LX-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936701009971", "variant_id": "gid://shopify/ProductVariant/44802344419379", "sku": "XXP-969545", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Icy Blue", "source_momentum_alt_sku": "T2-LX-03", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LX-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936701042739", "variant_id": "gid://shopify/ProductVariant/44802344583219", "sku": "XXP-969546", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Cobalt Glint", "source_momentum_alt_sku": "T2-LX-04", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LX-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936701075507", "variant_id": "gid://shopify/ProductVariant/44802344812595", "sku": "XXP-969547", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Palladium", "source_momentum_alt_sku": "T2-LX-05", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LX-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936701108275", "variant_id": "gid://shopify/ProductVariant/44802344976435", "sku": "XXP-969548", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Gleaming Grey", "source_momentum_alt_sku": "T2-LX-06", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LX-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936701141043", "variant_id": "gid://shopify/ProductVariant/44802345205811", "sku": "XXP-969549", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Lavish Cocoa", "source_momentum_alt_sku": "T2-LX-07", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LX-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936701173811", "variant_id": "gid://shopify/ProductVariant/44802345369651", "sku": "XXP-969550", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Dark Shimmer", "source_momentum_alt_sku": "T2-LX-08", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LX-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936701206579", "variant_id": "gid://shopify/ProductVariant/44802345566259", "sku": "XXP-969551", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Dazzling Gold", "source_momentum_alt_sku": "T2-LX-09", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LX-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936701239347", "variant_id": "gid://shopify/ProductVariant/44802345828403", "sku": "XXP-969552", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Sorrel Sheen", "source_momentum_alt_sku": "T2-LX-10", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LX-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936701272115", "variant_id": "gid://shopify/ProductVariant/44802346057779", "sku": "XXP-969553", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Bronze Glow", "source_momentum_alt_sku": "T2-LX-11", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LX-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936701304883", "variant_id": "gid://shopify/ProductVariant/44802346287155", "sku": "XXP-969554", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Sleek Rose", "source_momentum_alt_sku": "T2-LX-12", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LX-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936701337651", "variant_id": "gid://shopify/ProductVariant/44802346483763", "sku": "XXP-969555", "current_price": 50.61, "source_momentum_pattern": "Illusion Silk", "source_momentum_color": "Satin Blush", "source_momentum_alt_sku": "T2-LX-13", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-LX-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936701370419", "variant_id": "gid://shopify/ProductVariant/44802346713139", "sku": "XXP-969556", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Diamond", "source_momentum_alt_sku": "T2-MR-01", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936701403187", "variant_id": "gid://shopify/ProductVariant/44802346942515", "sku": "XXP-969557", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Frosted", "source_momentum_alt_sku": "T2-MR-02", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936701435955", "variant_id": "gid://shopify/ProductVariant/44802347040819", "sku": "XXP-969558", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Grey Star", "source_momentum_alt_sku": "T2-MR-03", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936701468723", "variant_id": "gid://shopify/ProductVariant/44802347106355", "sku": "XXP-969559", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Moonstone", "source_momentum_alt_sku": "T2-MR-04", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936701501491", "variant_id": "gid://shopify/ProductVariant/44802347139123", "sku": "XXP-969560", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Amazonite", "source_momentum_alt_sku": "T2-MR-05", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936701632563", "variant_id": "gid://shopify/ProductVariant/44802347171891", "sku": "XXP-969561", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Lemon Quartz", "source_momentum_alt_sku": "T2-MR-06", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936701698099", "variant_id": "gid://shopify/ProductVariant/44802347335731", "sku": "XXP-969562", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Golden Beryl", "source_momentum_alt_sku": "T2-MR-08", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936701730867", "variant_id": "gid://shopify/ProductVariant/44802347532339", "sku": "XXP-969563", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Autumn Agate", "source_momentum_alt_sku": "T2-MR-09", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936701763635", "variant_id": "gid://shopify/ProductVariant/44802347794483", "sku": "XXP-969564", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Topaz Tan", "source_momentum_alt_sku": "T2-MR-11", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936701796403", "variant_id": "gid://shopify/ProductVariant/44802348023859", "sku": "XXP-969565", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Mercury", "source_momentum_alt_sku": "T2-MR-12", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936701829171", "variant_id": "gid://shopify/ProductVariant/44802348220467", "sku": "XXP-969566", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Onyx", "source_momentum_alt_sku": "T2-MR-16", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936701861939", "variant_id": "gid://shopify/ProductVariant/44802348384307", "sku": "XXP-969567", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Rustic Jade", "source_momentum_alt_sku": "T2-MR-17", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-17", "uom": null, "width": ""}
+{"shopify_product_id": "6936701894707", "variant_id": "gid://shopify/ProductVariant/44802348580915", "sku": "XXP-969568", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Blackened Rock", "source_momentum_alt_sku": "T2-MR-18", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-18", "uom": null, "width": ""}
+{"shopify_product_id": "6936701927475", "variant_id": "gid://shopify/ProductVariant/44802348744755", "sku": "XXP-969569", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Coral Quartz", "source_momentum_alt_sku": "T2-MR-19", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-19", "uom": null, "width": ""}
+{"shopify_product_id": "6936701960243", "variant_id": "gid://shopify/ProductVariant/44802348974131", "sku": "XXP-969570", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Rubellite", "source_momentum_alt_sku": "T2-MR-20", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-20", "uom": null, "width": ""}
+{"shopify_product_id": "6936701993011", "variant_id": "gid://shopify/ProductVariant/44802349203507", "sku": "XXP-969571", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Royal Onyx", "source_momentum_alt_sku": "T2-MR-21", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-21", "uom": null, "width": ""}
+{"shopify_product_id": "6936702025779", "variant_id": "gid://shopify/ProductVariant/44802349400115", "sku": "XXP-969572", "current_price": 55.38, "source_momentum_pattern": "Marquise", "source_momentum_color": "Black Pearl", "source_momentum_alt_sku": "T2-MR-22", "new_price": 55.38, "hw_price": 55.38, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MR-22", "uom": null, "width": ""}
+{"shopify_product_id": "6936702058547", "variant_id": "gid://shopify/ProductVariant/44802349760563", "sku": "XXP-969573", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Diamond", "source_momentum_alt_sku": "T2-MS-01", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936702091315", "variant_id": "gid://shopify/ProductVariant/44802349924403", "sku": "XXP-969574", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Grey Star", "source_momentum_alt_sku": "T2-MS-02", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936702124083", "variant_id": "gid://shopify/ProductVariant/44802350055475", "sku": "XXP-969575", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Moonstone", "source_momentum_alt_sku": "T2-MS-03", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936702189619", "variant_id": "gid://shopify/ProductVariant/44802350219315", "sku": "XXP-969576", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Mercury", "source_momentum_alt_sku": "T2-MS-04", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936702222387", "variant_id": "gid://shopify/ProductVariant/44802350415923", "sku": "XXP-969577", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Pearl", "source_momentum_alt_sku": "T2-MS-05", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936702255155", "variant_id": "gid://shopify/ProductVariant/44802350645299", "sku": "XXP-969578", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Frosted", "source_momentum_alt_sku": "T2-MS-06", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936702287923", "variant_id": "gid://shopify/ProductVariant/44802351005747", "sku": "XXP-969579", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Riverstone", "source_momentum_alt_sku": "T2-MS-07", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936702320691", "variant_id": "gid://shopify/ProductVariant/44802351235123", "sku": "XXP-969580", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Rock Crystal", "source_momentum_alt_sku": "T2-MS-08", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936702353459", "variant_id": "gid://shopify/ProductVariant/44802351497267", "sku": "XXP-969581", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Lemon Quartz", "source_momentum_alt_sku": "T2-MS-09", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936702386227", "variant_id": "gid://shopify/ProductVariant/44802351595571", "sku": "XXP-969582", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Calcite", "source_momentum_alt_sku": "T2-MS-10", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936702418995", "variant_id": "gid://shopify/ProductVariant/44802351824947", "sku": "XXP-969583", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Golden Beryl", "source_momentum_alt_sku": "T2-MS-11", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936702451763", "variant_id": "gid://shopify/ProductVariant/44802352021555", "sku": "XXP-969584", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Autumn Agate", "source_momentum_alt_sku": "T2-MS-12", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936702517299", "variant_id": "gid://shopify/ProductVariant/44802352218163", "sku": "XXP-969585", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Silver", "source_momentum_alt_sku": "T2-MS-13", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936702550067", "variant_id": "gid://shopify/ProductVariant/44802352414771", "sku": "XXP-969586", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Topaz Tan", "source_momentum_alt_sku": "T2-MS-14", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936702582835", "variant_id": "gid://shopify/ProductVariant/44802352611379", "sku": "XXP-969587", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Emerald", "source_momentum_alt_sku": "T2-MS-16", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936702648371", "variant_id": "gid://shopify/ProductVariant/44802352840755", "sku": "XXP-969588", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Jade", "source_momentum_alt_sku": "T2-MS-17", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-17", "uom": null, "width": ""}
+{"shopify_product_id": "6936702681139", "variant_id": "gid://shopify/ProductVariant/44802352971827", "sku": "XXP-969589", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Amazonite", "source_momentum_alt_sku": "T2-MS-18", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-18", "uom": null, "width": ""}
+{"shopify_product_id": "6936702713907", "variant_id": "gid://shopify/ProductVariant/44802353004595", "sku": "XXP-969590", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Azurite", "source_momentum_alt_sku": "T2-MS-20", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-20", "uom": null, "width": ""}
+{"shopify_product_id": "6936702746675", "variant_id": "gid://shopify/ProductVariant/44802353037363", "sku": "XXP-969591", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Andesite", "source_momentum_alt_sku": "T2-MS-21", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-21", "uom": null, "width": ""}
+{"shopify_product_id": "6936702779443", "variant_id": "gid://shopify/ProductVariant/44802353070131", "sku": "XXP-969592", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Onyx", "source_momentum_alt_sku": "T2-MS-22", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-22", "uom": null, "width": ""}
+{"shopify_product_id": "6936702812211", "variant_id": "gid://shopify/ProductVariant/44802353266739", "sku": "XXP-969593", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Garnet", "source_momentum_alt_sku": "T2-MS-23", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-23", "uom": null, "width": ""}
+{"shopify_product_id": "6936702844979", "variant_id": "gid://shopify/ProductVariant/44802353496115", "sku": "XXP-969594", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Travertine", "source_momentum_alt_sku": "T2-MS-24", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-24", "uom": null, "width": ""}
+{"shopify_product_id": "6936702910515", "variant_id": "gid://shopify/ProductVariant/44802353725491", "sku": "XXP-969595", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Carnelian", "source_momentum_alt_sku": "T2-MS-25", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-25", "uom": null, "width": ""}
+{"shopify_product_id": "6936702943283", "variant_id": "gid://shopify/ProductVariant/44802354118707", "sku": "XXP-969596", "current_price": 48.58, "source_momentum_pattern": "Marquise Silk", "source_momentum_color": "Rubellite", "source_momentum_alt_sku": "T2-MS-26", "new_price": 48.58, "hw_price": 48.58, "join_method": "exact-mfr-alt", "mfr_sku": "T2-MS-26", "uom": null, "width": ""}
+{"shopify_product_id": "6936704122931", "variant_id": "gid://shopify/ProductVariant/44802354479155", "sku": "XXP-969627", "current_price": 58.79, "source_momentum_pattern": "Scrape", "source_momentum_color": "Plaster", "source_momentum_alt_sku": "T2-SC-01", "new_price": 58.79, "hw_price": 58.79, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SC-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936704155699", "variant_id": "gid://shopify/ProductVariant/44802354610227", "sku": "XXP-969628", "current_price": 58.79, "source_momentum_pattern": "Scrape", "source_momentum_color": "Stone", "source_momentum_alt_sku": "T2-SC-02", "new_price": 58.79, "hw_price": 58.79, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SC-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936704188467", "variant_id": "gid://shopify/ProductVariant/44802354970675", "sku": "XXP-969629", "current_price": 58.79, "source_momentum_pattern": "Scrape", "source_momentum_color": "Slate", "source_momentum_alt_sku": "T2-SC-03", "new_price": 58.79, "hw_price": 58.79, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SC-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936704221235", "variant_id": "gid://shopify/ProductVariant/44802355167283", "sku": "XXP-969630", "current_price": 58.79, "source_momentum_pattern": "Scrape", "source_momentum_color": "Flint", "source_momentum_alt_sku": "T2-SC-04", "new_price": 58.79, "hw_price": 58.79, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SC-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936704254003", "variant_id": "gid://shopify/ProductVariant/44802355626035", "sku": "XXP-969631", "current_price": 58.79, "source_momentum_pattern": "Scrape", "source_momentum_color": "Cream", "source_momentum_alt_sku": "T2-SC-05", "new_price": 58.79, "hw_price": 58.79, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SC-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936704286771", "variant_id": "gid://shopify/ProductVariant/44802355822643", "sku": "XXP-969632", "current_price": 58.79, "source_momentum_pattern": "Scrape", "source_momentum_color": "Blush", "source_momentum_alt_sku": "T2-SC-06", "new_price": 58.79, "hw_price": 58.79, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SC-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936704319539", "variant_id": "gid://shopify/ProductVariant/44802356019251", "sku": "XXP-969633", "current_price": 58.79, "source_momentum_pattern": "Scrape", "source_momentum_color": "Navy", "source_momentum_alt_sku": "T2-SC-07", "new_price": 58.79, "hw_price": 58.79, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SC-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936704974899", "variant_id": "gid://shopify/ProductVariant/44802356412467", "sku": "XXP-969653", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Butter Scone", "source_momentum_alt_sku": "T2-SH-01", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936705007667", "variant_id": "gid://shopify/ProductVariant/44802356609075", "sku": "XXP-969654", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Golden Straw", "source_momentum_alt_sku": "T2-SH-02", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936705040435", "variant_id": "gid://shopify/ProductVariant/44802356805683", "sku": "XXP-969655", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Lion's Mane", "source_momentum_alt_sku": "T2-SH-03", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936705073203", "variant_id": "gid://shopify/ProductVariant/44802357002291", "sku": "XXP-969656", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Tobacco", "source_momentum_alt_sku": "T2-SH-04", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936705105971", "variant_id": "gid://shopify/ProductVariant/44802357198899", "sku": "XXP-969657", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Sussex Down", "source_momentum_alt_sku": "T2-SH-05", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936705204275", "variant_id": "gid://shopify/ProductVariant/44802357461043", "sku": "XXP-969659", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Baker Street", "source_momentum_alt_sku": "T2-SH-07", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936705237043", "variant_id": "gid://shopify/ProductVariant/44802357657651", "sku": "XXP-969660", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Scotland Yard", "source_momentum_alt_sku": "T2-SH-08", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936705269811", "variant_id": "gid://shopify/ProductVariant/44802357985331", "sku": "XXP-969661", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Wisdom White", "source_momentum_alt_sku": "T2-SH-09", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936705302579", "variant_id": "gid://shopify/ProductVariant/44802358444083", "sku": "XXP-969662", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "London Fog", "source_momentum_alt_sku": "T2-SH-10", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936705335347", "variant_id": "gid://shopify/ProductVariant/44802358673459", "sku": "XXP-969663", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Smokey Taupe", "source_momentum_alt_sku": "T2-SH-11", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936705368115", "variant_id": "gid://shopify/ProductVariant/44802358804531", "sku": "XXP-969664", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Grey Matter", "source_momentum_alt_sku": "T2-SH-12", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936705400883", "variant_id": "gid://shopify/ProductVariant/44802358968371", "sku": "XXP-969665", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Benedict Blue", "source_momentum_alt_sku": "T2-SH-13", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936705433651", "variant_id": "gid://shopify/ProductVariant/44802359197747", "sku": "XXP-969666", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Moriarty", "source_momentum_alt_sku": "T2-SH-14", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936705466419", "variant_id": "gid://shopify/ProductVariant/44802359361587", "sku": "XXP-969667", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Blue Sleuth", "source_momentum_alt_sku": "T2-SH-15", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936705499187", "variant_id": "gid://shopify/ProductVariant/44802359525427", "sku": "XXP-969668", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Elementary Red", "source_momentum_alt_sku": "T2-SH-16", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936705531955", "variant_id": "gid://shopify/ProductVariant/44802359754803", "sku": "XXP-969669", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Whimsical Plum", "source_momentum_alt_sku": "T2-SH-17", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-17", "uom": null, "width": ""}
+{"shopify_product_id": "6936705564723", "variant_id": "gid://shopify/ProductVariant/44802359918643", "sku": "XXP-969670", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Eccentric Cider", "source_momentum_alt_sku": "T2-SH-18", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-18", "uom": null, "width": ""}
+{"shopify_product_id": "6936705597491", "variant_id": "gid://shopify/ProductVariant/44802360082483", "sku": "XXP-969671", "current_price": 50.61, "source_momentum_pattern": "Sherlock", "source_momentum_color": "Mystery Blue", "source_momentum_alt_sku": "T2-SH-19", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SH-19", "uom": null, "width": ""}
+{"shopify_product_id": "6936705892403", "variant_id": "gid://shopify/ProductVariant/44802360115251", "sku": "XXP-969680", "current_price": 56.11, "source_momentum_pattern": "Shades of Silk", "source_momentum_color": "Purify", "source_momentum_alt_sku": "T2-SL-01", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SL-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936705925171", "variant_id": "gid://shopify/ProductVariant/44802360148019", "sku": "XXP-969681", "current_price": 56.11, "source_momentum_pattern": "Shades of Silk", "source_momentum_color": "Reflection", "source_momentum_alt_sku": "T2-SL-02", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SL-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936705957939", "variant_id": "gid://shopify/ProductVariant/44802360311859", "sku": "XXP-969682", "current_price": 56.11, "source_momentum_pattern": "Shades of Silk", "source_momentum_color": "Dusk", "source_momentum_alt_sku": "T2-SL-03", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SL-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936706023475", "variant_id": "gid://shopify/ProductVariant/44802361262131", "sku": "XXP-969683", "current_price": 56.11, "source_momentum_pattern": "Shades of Silk", "source_momentum_color": "Jet Stream", "source_momentum_alt_sku": "T2-SL-04", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SL-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936706056243", "variant_id": "gid://shopify/ProductVariant/44802361360435", "sku": "XXP-969684", "current_price": 56.11, "source_momentum_pattern": "Shades of Silk", "source_momentum_color": "Haze", "source_momentum_alt_sku": "T2-SL-05", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SL-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936706089011", "variant_id": "gid://shopify/ProductVariant/44802361393203", "sku": "XXP-969685", "current_price": 56.11, "source_momentum_pattern": "Shades of Silk", "source_momentum_color": "Zephyr", "source_momentum_alt_sku": "T2-SL-06", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SL-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936706121779", "variant_id": "gid://shopify/ProductVariant/44802361425971", "sku": "XXP-969686", "current_price": 56.11, "source_momentum_pattern": "Shades of Silk", "source_momentum_color": "Cloud", "source_momentum_alt_sku": "T2-SL-07", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SL-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936706154547", "variant_id": "gid://shopify/ProductVariant/44802361491507", "sku": "XXP-969687", "current_price": 56.11, "source_momentum_pattern": "Shades of Silk", "source_momentum_color": "Illusion", "source_momentum_alt_sku": "T2-SL-08", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SL-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936706187315", "variant_id": "gid://shopify/ProductVariant/44802361589811", "sku": "XXP-969688", "current_price": 56.11, "source_momentum_pattern": "Shades of Silk", "source_momentum_color": "Misty", "source_momentum_alt_sku": "T2-SL-09", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SL-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936706220083", "variant_id": "gid://shopify/ProductVariant/44802361622579", "sku": "XXP-969689", "current_price": 56.11, "source_momentum_pattern": "Shades of Silk", "source_momentum_color": "Dawn", "source_momentum_alt_sku": "T2-SL-10", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SL-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936706285619", "variant_id": "gid://shopify/ProductVariant/44802361655347", "sku": "XXP-969690", "current_price": 56.11, "source_momentum_pattern": "Shades of Silk", "source_momentum_color": "Mirage", "source_momentum_alt_sku": "T2-SL-11", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SL-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936706318387", "variant_id": "gid://shopify/ProductVariant/44802361688115", "sku": "XXP-969691", "current_price": 56.11, "source_momentum_pattern": "Shades of Silk", "source_momentum_color": "Aura", "source_momentum_alt_sku": "T2-SL-12", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SL-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936706351155", "variant_id": "gid://shopify/ProductVariant/44802361786419", "sku": "XXP-969692", "current_price": 56.11, "source_momentum_pattern": "Shades of Silk", "source_momentum_color": "Ether", "source_momentum_alt_sku": "T2-SL-13", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SL-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936706383923", "variant_id": "gid://shopify/ProductVariant/44802361819187", "sku": "XXP-969693", "current_price": 56.11, "source_momentum_pattern": "Shades of Silk", "source_momentum_color": "Breezy", "source_momentum_alt_sku": "T2-SL-14", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SL-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936706416691", "variant_id": "gid://shopify/ProductVariant/44802361851955", "sku": "XXP-969694", "current_price": 56.11, "source_momentum_pattern": "Shades of Silk", "source_momentum_color": "Atmospheric", "source_momentum_alt_sku": "T2-SL-15", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SL-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936706449459", "variant_id": "gid://shopify/ProductVariant/44802361950259", "sku": "XXP-969695", "current_price": 56.11, "source_momentum_pattern": "Shades of Silk", "source_momentum_color": "Celestial", "source_momentum_alt_sku": "T2-SL-16", "new_price": 56.11, "hw_price": 56.11, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SL-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936706482227", "variant_id": "gid://shopify/ProductVariant/44802361983027", "sku": "XXP-969696", "current_price": 57.99, "source_momentum_pattern": "Shades of Ombre", "source_momentum_color": "Purify", "source_momentum_alt_sku": "T2-SR-01", "new_price": 57.99, "hw_price": 57.99, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SR-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936706514995", "variant_id": "gid://shopify/ProductVariant/44802362015795", "sku": "XXP-969697", "current_price": 57.99, "source_momentum_pattern": "Shades of Ombre", "source_momentum_color": "Zephyr", "source_momentum_alt_sku": "T2-SR-02", "new_price": 57.99, "hw_price": 57.99, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SR-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936706547763", "variant_id": "gid://shopify/ProductVariant/44802362081331", "sku": "XXP-969698", "current_price": 57.99, "source_momentum_pattern": "Shades of Ombre", "source_momentum_color": "Mirage", "source_momentum_alt_sku": "T2-SR-03", "new_price": 57.99, "hw_price": 57.99, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SR-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936706580531", "variant_id": "gid://shopify/ProductVariant/44802362146867", "sku": "XXP-969699", "current_price": 57.99, "source_momentum_pattern": "Shades of Ombre", "source_momentum_color": "Misty", "source_momentum_alt_sku": "T2-SR-04", "new_price": 57.99, "hw_price": 57.99, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SR-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936706613299", "variant_id": "gid://shopify/ProductVariant/44802362212403", "sku": "XXP-969700", "current_price": 57.99, "source_momentum_pattern": "Shades of Ombre", "source_momentum_color": "Atmospheric", "source_momentum_alt_sku": "T2-SR-05", "new_price": 57.99, "hw_price": 57.99, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SR-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936706646067", "variant_id": "gid://shopify/ProductVariant/44802362245171", "sku": "XXP-969701", "current_price": 58.71, "source_momentum_pattern": "Scrape N Scratch", "source_momentum_color": "Plaster Noir", "source_momentum_alt_sku": "T2-SS-01", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SS-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936706678835", "variant_id": "gid://shopify/ProductVariant/44802362376243", "sku": "XXP-969702", "current_price": 58.71, "source_momentum_pattern": "Scrape N Scratch", "source_momentum_color": "Stone Grey", "source_momentum_alt_sku": "T2-SS-02", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SS-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936706711603", "variant_id": "gid://shopify/ProductVariant/44802362409011", "sku": "XXP-969703", "current_price": 58.71, "source_momentum_pattern": "Scrape N Scratch", "source_momentum_color": "Silver Slate", "source_momentum_alt_sku": "T2-SS-03", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SS-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936706744371", "variant_id": "gid://shopify/ProductVariant/44802362441779", "sku": "XXP-969704", "current_price": 58.71, "source_momentum_pattern": "Scrape N Scratch", "source_momentum_color": "Flickering Flint", "source_momentum_alt_sku": "T2-SS-04", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SS-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936706777139", "variant_id": "gid://shopify/ProductVariant/44802362474547", "sku": "XXP-969705", "current_price": 58.71, "source_momentum_pattern": "Scrape N Scratch", "source_momentum_color": "Golden Plaster", "source_momentum_alt_sku": "T2-SS-05", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SS-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936706809907", "variant_id": "gid://shopify/ProductVariant/44802362507315", "sku": "XXP-969706", "current_price": 58.71, "source_momentum_pattern": "Scrape N Scratch", "source_momentum_color": "Fossil Cream", "source_momentum_alt_sku": "T2-SS-06", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SS-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936706875443", "variant_id": "gid://shopify/ProductVariant/44802362540083", "sku": "XXP-969707", "current_price": 58.71, "source_momentum_pattern": "Scrape N Scratch", "source_momentum_color": "Bronzed Blush", "source_momentum_alt_sku": "T2-SS-07", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SS-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936706908211", "variant_id": "gid://shopify/ProductVariant/44802362572851", "sku": "XXP-969708", "current_price": 58.71, "source_momentum_pattern": "Scrape N Scratch", "source_momentum_color": "Navy Rose", "source_momentum_alt_sku": "T2-SS-08", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-SS-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936706940979", "variant_id": "gid://shopify/ProductVariant/44802362605619", "sku": "XXP-969709", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Pale Sage", "source_momentum_alt_sku": "T2-TX-01", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936706973747", "variant_id": "gid://shopify/ProductVariant/44802362638387", "sku": "XXP-969710", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Fresh Fern", "source_momentum_alt_sku": "T2-TX-02", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936707006515", "variant_id": "gid://shopify/ProductVariant/44802362671155", "sku": "XXP-969711", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Sky", "source_momentum_alt_sku": "T2-TX-03", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936707039283", "variant_id": "gid://shopify/ProductVariant/44802362703923", "sku": "XXP-969712", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Fountain Pen", "source_momentum_alt_sku": "T2-TX-04", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936707072051", "variant_id": "gid://shopify/ProductVariant/44802362736691", "sku": "XXP-969713", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Blank Page", "source_momentum_alt_sku": "T2-TX-05", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936707104819", "variant_id": "gid://shopify/ProductVariant/44802362769459", "sku": "XXP-969714", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Grey Felt", "source_momentum_alt_sku": "T2-TX-06", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936707137587", "variant_id": "gid://shopify/ProductVariant/44802362802227", "sku": "XXP-969715", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Cool Grey", "source_momentum_alt_sku": "T2-TX-07", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936707170355", "variant_id": "gid://shopify/ProductVariant/44802362834995", "sku": "XXP-969716", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Blotter Navy", "source_momentum_alt_sku": "T2-TX-08", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936707203123", "variant_id": "gid://shopify/ProductVariant/44802362867763", "sku": "XXP-969717", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Goose Down", "source_momentum_alt_sku": "T2-TX-09", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936707235891", "variant_id": "gid://shopify/ProductVariant/44802362966067", "sku": "XXP-969718", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Cloud", "source_momentum_alt_sku": "T2-TX-10", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936707268659", "variant_id": "gid://shopify/ProductVariant/44802363162675", "sku": "XXP-969719", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Charcoal", "source_momentum_alt_sku": "T2-TX-11", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936707301427", "variant_id": "gid://shopify/ProductVariant/44802363260979", "sku": "XXP-969720", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "India Ink", "source_momentum_alt_sku": "T2-TX-12", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936707334195", "variant_id": "gid://shopify/ProductVariant/44802363359283", "sku": "XXP-969721", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Canvas", "source_momentum_alt_sku": "T2-TX-13", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936707366963", "variant_id": "gid://shopify/ProductVariant/44802363424819", "sku": "XXP-969722", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Neutral", "source_momentum_alt_sku": "T2-TX-14", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936707399731", "variant_id": "gid://shopify/ProductVariant/44802363457587", "sku": "XXP-969723", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Warm Greige", "source_momentum_alt_sku": "T2-TX-15", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936707432499", "variant_id": "gid://shopify/ProductVariant/44802363523123", "sku": "XXP-969724", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Bark", "source_momentum_alt_sku": "T2-TX-16", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936707465267", "variant_id": "gid://shopify/ProductVariant/44802364375091", "sku": "XXP-969725", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Archive Cream", "source_momentum_alt_sku": "T2-TX-17", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-17", "uom": null, "width": ""}
+{"shopify_product_id": "6936707498035", "variant_id": "gid://shopify/ProductVariant/44802364440627", "sku": "XXP-969726", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Beige", "source_momentum_alt_sku": "T2-TX-18", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-18", "uom": null, "width": ""}
+{"shopify_product_id": "6936707530803", "variant_id": "gid://shopify/ProductVariant/44802364506163", "sku": "XXP-969727", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Easel Tan", "source_momentum_alt_sku": "T2-TX-19", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-19", "uom": null, "width": ""}
+{"shopify_product_id": "6936707563571", "variant_id": "gid://shopify/ProductVariant/44802364637235", "sku": "XXP-969728", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Tea Wash", "source_momentum_alt_sku": "T2-TX-20", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-20", "uom": null, "width": ""}
+{"shopify_product_id": "6936707596339", "variant_id": "gid://shopify/ProductVariant/44802364670003", "sku": "XXP-969729", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Aged Glaze", "source_momentum_alt_sku": "T2-TX-21", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-21", "uom": null, "width": ""}
+{"shopify_product_id": "6936707661875", "variant_id": "gid://shopify/ProductVariant/44802364702771", "sku": "XXP-969730", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Spun Gold", "source_momentum_alt_sku": "T2-TX-22", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-22", "uom": null, "width": ""}
+{"shopify_product_id": "6936707694643", "variant_id": "gid://shopify/ProductVariant/44802364735539", "sku": "XXP-969731", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Oak", "source_momentum_alt_sku": "T2-TX-23", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-23", "uom": null, "width": ""}
+{"shopify_product_id": "6936707727411", "variant_id": "gid://shopify/ProductVariant/44802364768307", "sku": "XXP-969732", "current_price": 53.57, "source_momentum_pattern": "Sketch Tex", "source_momentum_color": "Carmine Rose", "source_momentum_alt_sku": "T2-TX-24", "new_price": 53.57, "hw_price": 53.57, "join_method": "exact-mfr-alt", "mfr_sku": "T2-TX-24", "uom": null, "width": ""}
+{"shopify_product_id": "6936707760179", "variant_id": "gid://shopify/ProductVariant/44802364801075", "sku": "XXP-969733", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Honeydew", "source_momentum_alt_sku": "T2-VT-20", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-20", "uom": null, "width": ""}
+{"shopify_product_id": "6936707825715", "variant_id": "gid://shopify/ProductVariant/44802365390899", "sku": "XXP-969734", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Aquamarine", "source_momentum_alt_sku": "T2-VT-21", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-21", "uom": null, "width": ""}
+{"shopify_product_id": "6936707858483", "variant_id": "gid://shopify/ProductVariant/44802365456435", "sku": "XXP-969735", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Phthalo Green", "source_momentum_alt_sku": "T2-VT-22", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-22", "uom": null, "width": ""}
+{"shopify_product_id": "6936707924019", "variant_id": "gid://shopify/ProductVariant/44802365489203", "sku": "XXP-969736", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Olive Amber", "source_momentum_alt_sku": "T2-VT-23", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-23", "uom": null, "width": ""}
+{"shopify_product_id": "6936707956787", "variant_id": "gid://shopify/ProductVariant/44802365521971", "sku": "XXP-969737", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Winter Sky", "source_momentum_alt_sku": "T2-VT-24", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-24", "uom": null, "width": ""}
+{"shopify_product_id": "6936707989555", "variant_id": "gid://shopify/ProductVariant/44802365587507", "sku": "XXP-969738", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Colonial Grey", "source_momentum_alt_sku": "T2-VT-25", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-25", "uom": null, "width": ""}
+{"shopify_product_id": "6936708022323", "variant_id": "gid://shopify/ProductVariant/44802365653043", "sku": "XXP-969739", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Deep Silver", "source_momentum_alt_sku": "T2-VT-26", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-26", "uom": null, "width": ""}
+{"shopify_product_id": "6936708055091", "variant_id": "gid://shopify/ProductVariant/44802365751347", "sku": "XXP-969740", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Midnight Blue", "source_momentum_alt_sku": "T2-VT-27", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-27", "uom": null, "width": ""}
+{"shopify_product_id": "6936708087859", "variant_id": "gid://shopify/ProductVariant/44802365849651", "sku": "XXP-969741", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Oxford White", "source_momentum_alt_sku": "T2-VT-28", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-28", "uom": null, "width": ""}
+{"shopify_product_id": "6936708120627", "variant_id": "gid://shopify/ProductVariant/44802365882419", "sku": "XXP-969742", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Platinum", "source_momentum_alt_sku": "T2-VT-29", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-29", "uom": null, "width": ""}
+{"shopify_product_id": "6936708153395", "variant_id": "gid://shopify/ProductVariant/44802365915187", "sku": "XXP-969743", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Dimgray", "source_momentum_alt_sku": "T2-VT-30", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-30", "uom": null, "width": ""}
+{"shopify_product_id": "6936708218931", "variant_id": "gid://shopify/ProductVariant/44802365947955", "sku": "XXP-969744", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Pen and Ink", "source_momentum_alt_sku": "T2-VT-31", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-31", "uom": null, "width": ""}
+{"shopify_product_id": "6936708251699", "variant_id": "gid://shopify/ProductVariant/44802366013491", "sku": "XXP-969745", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Calm Cream", "source_momentum_alt_sku": "T2-VT-32", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-32", "uom": null, "width": ""}
+{"shopify_product_id": "6936708284467", "variant_id": "gid://shopify/ProductVariant/44802366111795", "sku": "XXP-969746", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Wooly Beige", "source_momentum_alt_sku": "T2-VT-33", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-33", "uom": null, "width": ""}
+{"shopify_product_id": "6936708317235", "variant_id": "gid://shopify/ProductVariant/44802366144563", "sku": "XXP-969747", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Basalt", "source_momentum_alt_sku": "T2-VT-34", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-34", "uom": null, "width": ""}
+{"shopify_product_id": "6936708350003", "variant_id": "gid://shopify/ProductVariant/44802366242867", "sku": "XXP-969748", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Sahara", "source_momentum_alt_sku": "T2-VT-35", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-35", "uom": null, "width": ""}
+{"shopify_product_id": "6936708382771", "variant_id": "gid://shopify/ProductVariant/44802367914035", "sku": "XXP-969749", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Treasure", "source_momentum_alt_sku": "T2-VT-36", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-36", "uom": null, "width": ""}
+{"shopify_product_id": "6936708415539", "variant_id": "gid://shopify/ProductVariant/44802367946803", "sku": "XXP-969750", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Russet", "source_momentum_alt_sku": "T2-VT-37", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-37", "uom": null, "width": ""}
+{"shopify_product_id": "6936708448307", "variant_id": "gid://shopify/ProductVariant/44802367979571", "sku": "XXP-969751", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Blossom", "source_momentum_alt_sku": "T2-VT-38", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-38", "uom": null, "width": ""}
+{"shopify_product_id": "6936708481075", "variant_id": "gid://shopify/ProductVariant/44802368045107", "sku": "XXP-969752", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "French Lilac", "source_momentum_alt_sku": "T2-VT-39", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-39", "uom": null, "width": ""}
+{"shopify_product_id": "6936708513843", "variant_id": "gid://shopify/ProductVariant/44802368274483", "sku": "XXP-969753", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Bit of Violet", "source_momentum_alt_sku": "T2-VT-40", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-40", "uom": null, "width": ""}
+{"shopify_product_id": "6936708546611", "variant_id": "gid://shopify/ProductVariant/44802368307251", "sku": "XXP-969754", "current_price": 50.61, "source_momentum_pattern": "Nile Vine Texture", "source_momentum_color": "Barely Brown", "source_momentum_alt_sku": "T2-VT-41", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-VT-41", "uom": null, "width": ""}
+{"shopify_product_id": "6936708579379", "variant_id": "gid://shopify/ProductVariant/44802368340019", "sku": "XXP-969755", "current_price": 57.05, "source_momentum_pattern": "Wander WC", "source_momentum_color": "White Willow", "source_momentum_alt_sku": "T2-WD-01", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-WD-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936708612147", "variant_id": "gid://shopify/ProductVariant/44802368372787", "sku": "XXP-969756", "current_price": 57.05, "source_momentum_pattern": "Wander WC", "source_momentum_color": "Sparrow", "source_momentum_alt_sku": "T2-WD-02", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-WD-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936708644915", "variant_id": "gid://shopify/ProductVariant/44802368667699", "sku": "XXP-969757", "current_price": 57.05, "source_momentum_pattern": "Wander WC", "source_momentum_color": "Cinder", "source_momentum_alt_sku": "T2-WD-03", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-WD-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936708677683", "variant_id": "gid://shopify/ProductVariant/44802368766003", "sku": "XXP-969758", "current_price": 57.05, "source_momentum_pattern": "Wander WC", "source_momentum_color": "Charcoal", "source_momentum_alt_sku": "T2-WD-04", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-WD-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936708710451", "variant_id": "gid://shopify/ProductVariant/44802368831539", "sku": "XXP-969759", "current_price": 57.05, "source_momentum_pattern": "Wander WC", "source_momentum_color": "Dewdrop", "source_momentum_alt_sku": "T2-WD-05", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-WD-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936708743219", "variant_id": "gid://shopify/ProductVariant/44802368929843", "sku": "XXP-969760", "current_price": 57.05, "source_momentum_pattern": "Wander WC", "source_momentum_color": "Indigo", "source_momentum_alt_sku": "T2-WD-06", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-WD-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936708775987", "variant_id": "gid://shopify/ProductVariant/44802369060915", "sku": "XXP-969761", "current_price": 57.05, "source_momentum_pattern": "Wander WC", "source_momentum_color": "Camel", "source_momentum_alt_sku": "T2-WD-07", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-WD-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936708841523", "variant_id": "gid://shopify/ProductVariant/44802369093683", "sku": "XXP-969762", "current_price": 57.05, "source_momentum_pattern": "Wander WC", "source_momentum_color": "Burgundy", "source_momentum_alt_sku": "T2-WD-08", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-WD-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936708874291", "variant_id": "gid://shopify/ProductVariant/44802369126451", "sku": "XXP-969763", "current_price": 57.05, "source_momentum_pattern": "Wander WC", "source_momentum_color": "Olive", "source_momentum_alt_sku": "T2-WD-09", "new_price": 57.05, "hw_price": 57.05, "join_method": "exact-mfr-alt", "mfr_sku": "T2-WD-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936709759027", "variant_id": "gid://shopify/ProductVariant/44802369159219", "sku": "XXP-969789", "current_price": 50.61, "source_momentum_pattern": "Zingana", "source_momentum_color": "Willow", "source_momentum_alt_sku": "T2-ZG-19", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZG-19", "uom": null, "width": ""}
+{"shopify_product_id": "6936709791795", "variant_id": "gid://shopify/ProductVariant/44802369224755", "sku": "XXP-969790", "current_price": 50.61, "source_momentum_pattern": "Zingana", "source_momentum_color": "Dark Walnut", "source_momentum_alt_sku": "T2-ZG-20", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZG-20", "uom": null, "width": ""}
+{"shopify_product_id": "6936709857331", "variant_id": "gid://shopify/ProductVariant/44802369290291", "sku": "XXP-969791", "current_price": 50.61, "source_momentum_pattern": "Zingana", "source_momentum_color": "Maple", "source_momentum_alt_sku": "T2-ZG-21", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZG-21", "uom": null, "width": ""}
+{"shopify_product_id": "6936709955635", "variant_id": "gid://shopify/ProductVariant/44802369355827", "sku": "XXP-969792", "current_price": 50.61, "source_momentum_pattern": "Zingana", "source_momentum_color": "Patinated Elm", "source_momentum_alt_sku": "T2-ZG-22", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZG-22", "uom": null, "width": ""}
+{"shopify_product_id": "6936709988403", "variant_id": "gid://shopify/ProductVariant/44802370109491", "sku": "XXP-969793", "current_price": 50.61, "source_momentum_pattern": "Zingana", "source_momentum_color": "Ash", "source_momentum_alt_sku": "T2-ZG-23", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZG-23", "uom": null, "width": ""}
+{"shopify_product_id": "6936710021171", "variant_id": "gid://shopify/ProductVariant/44802370306099", "sku": "XXP-969794", "current_price": 50.61, "source_momentum_pattern": "Zingana", "source_momentum_color": "Dogwood", "source_momentum_alt_sku": "T2-ZG-24", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZG-24", "uom": null, "width": ""}
+{"shopify_product_id": "6936710053939", "variant_id": "gid://shopify/ProductVariant/44802370338867", "sku": "XXP-969795", "current_price": 50.61, "source_momentum_pattern": "Zingana", "source_momentum_color": "Blue Spruce", "source_momentum_alt_sku": "T2-ZG-25", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZG-25", "uom": null, "width": ""}
+{"shopify_product_id": "6936710086707", "variant_id": "gid://shopify/ProductVariant/44802370371635", "sku": "XXP-969796", "current_price": 50.61, "source_momentum_pattern": "Zingana", "source_momentum_color": "White Oak", "source_momentum_alt_sku": "T2-ZG-26", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZG-26", "uom": null, "width": ""}
+{"shopify_product_id": "6936710119475", "variant_id": "gid://shopify/ProductVariant/44802370404403", "sku": "XXP-969797", "current_price": 50.61, "source_momentum_pattern": "Zingana", "source_momentum_color": "Sandy Birch", "source_momentum_alt_sku": "T2-ZG-27", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZG-27", "uom": null, "width": ""}
+{"shopify_product_id": "6936710152243", "variant_id": "gid://shopify/ProductVariant/44802370437171", "sku": "XXP-969798", "current_price": 50.61, "source_momentum_pattern": "Zingana", "source_momentum_color": "Grey Cypress", "source_momentum_alt_sku": "T2-ZG-28", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZG-28", "uom": null, "width": ""}
+{"shopify_product_id": "6936710185011", "variant_id": "gid://shopify/ProductVariant/44802370469939", "sku": "XXP-969799", "current_price": 50.61, "source_momentum_pattern": "Zingana", "source_momentum_color": "Ziricote", "source_momentum_alt_sku": "T2-ZG-29", "new_price": 50.61, "hw_price": 50.61, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZG-29", "uom": null, "width": ""}
+{"shopify_product_id": "6936710217779", "variant_id": "gid://shopify/ProductVariant/44802370502707", "sku": "XXP-969800", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Blue Hue", "source_momentum_alt_sku": "T2-ZN-01", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-01", "uom": null, "width": ""}
+{"shopify_product_id": "6936710250547", "variant_id": "gid://shopify/ProductVariant/44802370535475", "sku": "XXP-969801", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Tropical Sparkle", "source_momentum_alt_sku": "T2-ZN-02", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-02", "uom": null, "width": ""}
+{"shopify_product_id": "6936710283315", "variant_id": "gid://shopify/ProductVariant/44802370666547", "sku": "XXP-969802", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Jungle Green", "source_momentum_alt_sku": "T2-ZN-03", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-03", "uom": null, "width": ""}
+{"shopify_product_id": "6936710348851", "variant_id": "gid://shopify/ProductVariant/44802370732083", "sku": "XXP-969803", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Polished", "source_momentum_alt_sku": "T2-ZN-04", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-04", "uom": null, "width": ""}
+{"shopify_product_id": "6936710381619", "variant_id": "gid://shopify/ProductVariant/44802370764851", "sku": "XXP-969804", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Zebra", "source_momentum_alt_sku": "T2-ZN-05", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-05", "uom": null, "width": ""}
+{"shopify_product_id": "6936710414387", "variant_id": "gid://shopify/ProductVariant/44802370797619", "sku": "XXP-969805", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Black Bean", "source_momentum_alt_sku": "T2-ZN-06", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-06", "uom": null, "width": ""}
+{"shopify_product_id": "6936710447155", "variant_id": "gid://shopify/ProductVariant/44802370863155", "sku": "XXP-969806", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Icy White", "source_momentum_alt_sku": "T2-ZN-07", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-07", "uom": null, "width": ""}
+{"shopify_product_id": "6936710479923", "variant_id": "gid://shopify/ProductVariant/44802370994227", "sku": "XXP-969807", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Grey Glamour", "source_momentum_alt_sku": "T2-ZN-08", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-08", "uom": null, "width": ""}
+{"shopify_product_id": "6936710512691", "variant_id": "gid://shopify/ProductVariant/44802371125299", "sku": "XXP-969808", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Smokey Steel", "source_momentum_alt_sku": "T2-ZN-09", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-09", "uom": null, "width": ""}
+{"shopify_product_id": "6936710545459", "variant_id": "gid://shopify/ProductVariant/44802371354675", "sku": "XXP-969809", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Lovely Lace", "source_momentum_alt_sku": "T2-ZN-10", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-10", "uom": null, "width": ""}
+{"shopify_product_id": "6936710578227", "variant_id": "gid://shopify/ProductVariant/44802371387443", "sku": "XXP-969810", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Moon Mist", "source_momentum_alt_sku": "T2-ZN-11", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-11", "uom": null, "width": ""}
+{"shopify_product_id": "6936710610995", "variant_id": "gid://shopify/ProductVariant/44802371420211", "sku": "XXP-969811", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Toasted Almond", "source_momentum_alt_sku": "T2-ZN-12", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-12", "uom": null, "width": ""}
+{"shopify_product_id": "6936710643763", "variant_id": "gid://shopify/ProductVariant/44802371452979", "sku": "XXP-969812", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Custard Cream", "source_momentum_alt_sku": "T2-ZN-13", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-13", "uom": null, "width": ""}
+{"shopify_product_id": "6936710709299", "variant_id": "gid://shopify/ProductVariant/44802371485747", "sku": "XXP-969813", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Tan Lines", "source_momentum_alt_sku": "T2-ZN-14", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-14", "uom": null, "width": ""}
+{"shopify_product_id": "6936710774835", "variant_id": "gid://shopify/ProductVariant/44802371584051", "sku": "XXP-969814", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Sepia", "source_momentum_alt_sku": "T2-ZN-15", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-15", "uom": null, "width": ""}
+{"shopify_product_id": "6936710807603", "variant_id": "gid://shopify/ProductVariant/44802371682355", "sku": "XXP-969815", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "French Rose", "source_momentum_alt_sku": "T2-ZN-16", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-16", "uom": null, "width": ""}
+{"shopify_product_id": "6936710840371", "variant_id": "gid://shopify/ProductVariant/44802371780659", "sku": "XXP-969816", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Hot Tamale", "source_momentum_alt_sku": "T2-ZN-17", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-17", "uom": null, "width": ""}
+{"shopify_product_id": "6936710873139", "variant_id": "gid://shopify/ProductVariant/44802371813427", "sku": "XXP-969817", "current_price": 58.71, "source_momentum_pattern": "Zipper Zing", "source_momentum_color": "Royal Heart", "source_momentum_alt_sku": "T2-ZN-18", "new_price": 58.71, "hw_price": 58.71, "join_method": "exact-mfr-alt", "mfr_sku": "T2-ZN-18", "uom": null, "width": ""}
diff --git a/data/d3a-skips.jsonl b/data/d3a-skips.jsonl
new file mode 100644
index 0000000..0d9ef35
--- /dev/null
+++ b/data/d3a-skips.jsonl
@@ -0,0 +1,1082 @@
+{"shopify_product_id": "1496209653872", "sku": "XBG-44000-yard", "dw_sku": "XBG-44000", "mfr_sku": "44000", "current_price": 51.15, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496214601840", "sku": "XCS-44046-yard", "dw_sku": "XCS-44046", "mfr_sku": "44046", "current_price": 41.41, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496214863984", "sku": "XCS-44047-yard", "dw_sku": "XCS-44047", "mfr_sku": "2VFO-09", "current_price": 41.41, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496215388272", "sku": "XCS-44051-yard", "dw_sku": "XCS-44051", "mfr_sku": "2VFO-13", "current_price": 41.41, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496218697840", "sku": "XCS-44052-yard", "dw_sku": "XCS-44052", "mfr_sku": "2VFO-14", "current_price": 41.41, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496218927216", "sku": "XCS-44053-yard", "dw_sku": "XCS-44053", "mfr_sku": "2VFO-15", "current_price": 41.41, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496219091056", "sku": "XCS-44054-yard", "dw_sku": "XCS-44054", "mfr_sku": "2VFO-16", "current_price": 41.41, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496219287664", "sku": "XCS-44055-yard", "dw_sku": "XCS-44055", "mfr_sku": "2VFO-17", "current_price": 41.41, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496219549808", "sku": "XCS-44056-yard", "dw_sku": "XCS-44056", "mfr_sku": "2VFO-18", "current_price": 41.41, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496254382192", "sku": "XMM-44255-yard", "dw_sku": "XMM-44255", "mfr_sku": "Q40-286", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496254709872", "sku": "XMM-44257-yard", "dw_sku": "XMM-44257", "mfr_sku": "Q40-371", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496254840944", "sku": "XMM-44258-yard", "dw_sku": "XMM-44258", "mfr_sku": "Q40-398", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496255430768", "sku": "XMM-44261-yard", "dw_sku": "XMM-44261", "mfr_sku": "Q40-466", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496255627376", "sku": "XMM-44262-yard", "dw_sku": "XMM-44262", "mfr_sku": "Q40-473", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496255791216", "sku": "XMM-44263-yard", "dw_sku": "XMM-44263", "mfr_sku": "Q40-503", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496256249968", "sku": "XMM-44266-yard", "dw_sku": "XMM-44266", "mfr_sku": "Q40-514", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496256446576", "sku": "XMM-44267-yard", "dw_sku": "XMM-44267", "mfr_sku": "Q40-528", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496256577648", "sku": "XMM-44268-yard", "dw_sku": "XMM-44268", "mfr_sku": "Q40-533", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496256807024", "sku": "XMM-44269-yard", "dw_sku": "XMM-44269", "mfr_sku": "Q40-535", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496257134704", "sku": "XMM-44270-yard", "dw_sku": "XMM-44270", "mfr_sku": "Q40-544", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496257298544", "sku": "XMM-44271-yard", "dw_sku": "XMM-44271", "mfr_sku": "Q40-555", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496257527920", "sku": "XMM-44272-yard", "dw_sku": "XMM-44272", "mfr_sku": "Q40-575", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496257691760", "sku": "XMM-44273-yard", "dw_sku": "XMM-44273", "mfr_sku": "Q40-594", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496257888368", "sku": "XMM-44274-yard", "dw_sku": "XMM-44274", "mfr_sku": "Q40-672", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496258216048", "sku": "XMM-44276-yard", "dw_sku": "XMM-44276", "mfr_sku": "Q40-821", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496258379888", "sku": "XMM-44277-yard", "dw_sku": "XMM-44277", "mfr_sku": "Q56-080", "current_price": 35.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496258576496", "sku": "XSC-44278-yard", "dw_sku": "XSC-44278", "mfr_sku": "Q56-080", "current_price": 37.88, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496258707568", "sku": "XSC-44279-yard", "dw_sku": "XSC-44279", "mfr_sku": "Q56-197", "current_price": 37.88, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496259035248", "sku": "XSC-44280-yard", "dw_sku": "XSC-44280", "mfr_sku": "Q56-293", "current_price": 37.88, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496259199088", "sku": "XSC-44281-yard", "dw_sku": "XSC-44281", "mfr_sku": "Q56-308-1", "current_price": 37.88, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496259297392", "sku": "XSC-44282-yard", "dw_sku": "XSC-44282", "mfr_sku": "Q56-308", "current_price": 37.88, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496259428464", "sku": "XSC-44283-yard", "dw_sku": "XSC-44283", "mfr_sku": "Q56-365", "current_price": 37.88, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496259657840", "sku": "XSC-44284-yard", "dw_sku": "XSC-44284", "mfr_sku": "Q56-371", "current_price": 37.88, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496259690608", "sku": "XSC-44285-yard", "dw_sku": "XSC-44285", "mfr_sku": "Q56-433", "current_price": 37.88, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496259821680", "sku": "XSC-44286-yard", "dw_sku": "XSC-44286", "mfr_sku": "Q56-452", "current_price": 37.88, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496260051056", "sku": "XSC-44287-yard", "dw_sku": "XSC-44287", "mfr_sku": "Q56-528", "current_price": 37.88, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496260182128", "sku": "XSC-44288-yard", "dw_sku": "XSC-44288", "mfr_sku": "Q56-546", "current_price": 37.88, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496260411504", "sku": "XSC-44289-yard", "dw_sku": "XSC-44289", "mfr_sku": "Q56-690", "current_price": 37.88, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1496260673648", "sku": "XSC-44290-yard", "dw_sku": "XSC-44290", "mfr_sku": "Q56-717", "current_price": 37.88, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1497196658800", "sku": "XQ-668157-yard", "dw_sku": "XQ-668157", "mfr_sku": "royal_jeweled_sceptre_glo54801", "current_price": 218.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1497196822640", "sku": "XQ-668158-yard", "dw_sku": "XQ-668158", "mfr_sku": "royal_jeweled_sceptre_glo54802", "current_price": 218.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1497196953712", "sku": "XQ-668159-yard", "dw_sku": "XQ-668159", "mfr_sku": "royal_jeweled_sceptre_glo54803", "current_price": 218.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1497197117552", "sku": "XQ-668160-yard", "dw_sku": "XQ-668160", "mfr_sku": "royal_jeweled_sceptre_glo54804", "current_price": 218.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1497197281392", "sku": "XQ-668161-yard", "dw_sku": "XQ-668161", "mfr_sku": "royal_jeweled_sceptre_glo54805", "current_price": 218.53, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498852851824", "sku": "XJC-47054-yard", "dw_sku": "XJC-47054", "mfr_sku": "Allegro_TRI-GO-01", "current_price": 42.14, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498853245040", "sku": "XJC-47056-yard", "dw_sku": "XJC-47056", "mfr_sku": "Allegro_TRI-GO-03", "current_price": 42.14, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498853441648", "sku": "XJC-47057-yard", "dw_sku": "XJC-47057", "mfr_sku": "Allegro_TRI-GO-04", "current_price": 42.14, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498853867632", "sku": "XJC-47059-yard", "dw_sku": "XJC-47059", "mfr_sku": "Allegro_TRI-GO-06", "current_price": 42.14, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498854260848", "sku": "XJC-47061-yard", "dw_sku": "XJC-47061", "mfr_sku": "Allegro_TRI-GO-08", "current_price": 42.14, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498854424688", "sku": "XJC-47062-yard", "dw_sku": "XJC-47062", "mfr_sku": "Allegro_TRI-GO-09", "current_price": 42.14, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498985234544", "sku": "XLB-47632-yard", "dw_sku": "XLB-47632", "mfr_sku": "etch_sg2525", "current_price": 123.8, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498985365616", "sku": "XLB-47633-yard", "dw_sku": "XLB-47633", "mfr_sku": "etch_sg2526", "current_price": 123.8, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498985562224", "sku": "XLB-47634-yard", "dw_sku": "XLB-47634", "mfr_sku": "etch_sg2527", "current_price": 123.8, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498985791600", "sku": "XLB-47635-yard", "dw_sku": "XLB-47635", "mfr_sku": "etch_sg2528", "current_price": 123.8, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498986152048", "sku": "XLB-47637-yard", "dw_sku": "XLB-47637", "mfr_sku": "etch_sg2530", "current_price": 123.8, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498986348656", "sku": "XLB-47638-yard", "dw_sku": "XLB-47638", "mfr_sku": "etch_sg2531", "current_price": 123.8, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498986840176", "sku": "XLB-47640-yard", "dw_sku": "XLB-47640", "mfr_sku": "etch_sg2533", "current_price": 123.8, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498986971248", "sku": "XLB-47641-yard", "dw_sku": "XLB-47641", "mfr_sku": "etch_sg2534", "current_price": 123.8, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498987266160", "sku": "XLB-47642-yard", "dw_sku": "XLB-47642", "mfr_sku": "etch_sg2535", "current_price": 123.8, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498987692144", "sku": "XLB-47644-yard", "dw_sku": "XLB-47644", "mfr_sku": "etch_sg2537", "current_price": 123.8, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1498987921520", "sku": "XLB-47645-yard", "dw_sku": "XLB-47645", "mfr_sku": "etch_sg2938", "current_price": 123.8, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499495399536", "sku": "XWH-52368-yard", "dw_sku": "XWH-52368", "mfr_sku": "52368", "current_price": 60.96, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499512930416", "sku": "XWJ-52446-yard", "dw_sku": "XWJ-52446", "mfr_sku": "52446", "current_price": 41.85, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499519942768", "sku": "XWJ-52482-yard", "dw_sku": "XWJ-52482", "mfr_sku": "Sovelle_L2-NV-01", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499520139376", "sku": "XWJ-52483-yard", "dw_sku": "XWJ-52483", "mfr_sku": "Sovelle_L2-NV-02", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499520565360", "sku": "XWJ-52485-yard", "dw_sku": "XWJ-52485", "mfr_sku": "Sovelle_L2-NV-04", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499520958576", "sku": "XWJ-52487-yard", "dw_sku": "XWJ-52487", "mfr_sku": "Sovelle_L2-NV-06", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499521122416", "sku": "XWJ-52488-yard", "dw_sku": "XWJ-52488", "mfr_sku": "Sovelle_L2-NV-07", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499521319024", "sku": "XWJ-52489-yard", "dw_sku": "XWJ-52489", "mfr_sku": "Sovelle_L2-NV-08", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499522072688", "sku": "XWJ-52493-yard", "dw_sku": "XWJ-52493", "mfr_sku": "Sovelle_L2-NV-12", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499522302064", "sku": "XWK-52494-yard", "dw_sku": "XWK-52494", "mfr_sku": "Sovelle_L2-NV-13", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499522498672", "sku": "XWK-52495-yard", "dw_sku": "XWK-52495", "mfr_sku": "Sovelle_L2-NV-14", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499522891888", "sku": "XWK-52497-yard", "dw_sku": "XWK-52497", "mfr_sku": "Sovelle_L2-NV-16", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499523022960", "sku": "XWK-52498-yard", "dw_sku": "XWK-52498", "mfr_sku": "Sovelle_L2-NV-17", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499523219568", "sku": "XWK-52499-yard", "dw_sku": "XWK-52499", "mfr_sku": "Sovelle_L2-NV-18", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499523612784", "sku": "XWK-52501-yard", "dw_sku": "XWK-52501", "mfr_sku": "Sovelle_L2-NV-20", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499523842160", "sku": "XWK-52502-yard", "dw_sku": "XWK-52502", "mfr_sku": "Sovelle_L2-NV-21", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499524268144", "sku": "XWK-52504-yard", "dw_sku": "XWK-52504", "mfr_sku": "Sovelle_L2-NV-23", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499828879472", "sku": "XWC-53219-sample", "dw_sku": "XWC-53219", "mfr_sku": "53219", "current_price": null, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499887173744", "sku": "XWT-53329-sample", "dw_sku": "XWT-53329", "mfr_sku": "prisma1533829", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499933048944", "sku": "XWT-53460-yard", "dw_sku": "XWT-53460", "mfr_sku": "Sovelle_L2-NV-01", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499933311088", "sku": "XWT-53461-yard", "dw_sku": "XWT-53461", "mfr_sku": "Sovelle_L2-NV-02", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499933671536", "sku": "XWT-53462-yard", "dw_sku": "XWT-53462", "mfr_sku": "Sovelle_L2-NV-03", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499933868144", "sku": "XWT-53463-yard", "dw_sku": "XWT-53463", "mfr_sku": "Sovelle_L2-NV-04", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499934097520", "sku": "XWT-53464-yard", "dw_sku": "XWT-53464", "mfr_sku": "Sovelle_L2-NV-05", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499934425200", "sku": "XWT-53465-yard", "dw_sku": "XWT-53465", "mfr_sku": "Sovelle_L2-NV-06", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499934654576", "sku": "XWT-53466-yard", "dw_sku": "XWT-53466", "mfr_sku": "Sovelle_L2-NV-07", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499935146096", "sku": "XWT-53468-yard", "dw_sku": "XWT-53468", "mfr_sku": "Sovelle_L2-NV-09", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499935342704", "sku": "XWT-53469-yard", "dw_sku": "XWT-53469", "mfr_sku": "Sovelle_L2-NV-10", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499936194672", "sku": "XWT-53472-yard", "dw_sku": "XWT-53472", "mfr_sku": "Sovelle_L2-NV-13", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499936424048", "sku": "XWT-53473-yard", "dw_sku": "XWT-53473", "mfr_sku": "Sovelle_L2-NV-14", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499936653424", "sku": "XWT-53474-yard", "dw_sku": "XWT-53474", "mfr_sku": "Sovelle_L2-NV-15", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499937013872", "sku": "XWT-53475-yard", "dw_sku": "XWT-53475", "mfr_sku": "Sovelle_L2-NV-16", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499937341552", "sku": "XWT-53476-yard", "dw_sku": "XWT-53476", "mfr_sku": "Sovelle_L2-NV-17", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499937931376", "sku": "XWT-53478-yard", "dw_sku": "XWT-53478", "mfr_sku": "Sovelle_L2-NV-19", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499938095216", "sku": "XWT-53479-yard", "dw_sku": "XWT-53479", "mfr_sku": "Sovelle_L2-NV-20", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499938390128", "sku": "XWT-53480-yard", "dw_sku": "XWT-53480", "mfr_sku": "Sovelle_L2-NV-21", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499938586736", "sku": "XWT-53481-yard", "dw_sku": "XWT-53481", "mfr_sku": "Sovelle_L2-NV-22", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1499939078256", "sku": "XWT-53483-yard", "dw_sku": "XWT-53483", "mfr_sku": "Sovelle_L2-NV-24", "current_price": 25.77, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501183017072", "sku": "XHW-2010163-yard", "dw_sku": "XHW-2010163", "mfr_sku": "HABERDSHER_2VHA-02", "current_price": 45.54, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501183311984", "sku": "XHW-2010164-yard", "dw_sku": "XHW-2010164", "mfr_sku": "HABERDSHER_2VHA-03", "current_price": 45.54, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501183967344", "sku": "XHW-2010166-yard", "dw_sku": "XHW-2010166", "mfr_sku": "HABERDSHER_2VHA-05", "current_price": 45.54, "uom": "Sold Per None", "width": "54\"", "reason": "hw_price 12.6 outside $15-72/yd band", "source_momentum_pattern": "Haberdasher"}
+{"shopify_product_id": "1501184229488", "sku": "XHW-2010167-yard", "dw_sku": "XHW-2010167", "mfr_sku": "HABERDSHER_2VHA-06", "current_price": 45.54, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501184491632", "sku": "XHW-2010169-yard", "dw_sku": "XHW-2010169", "mfr_sku": "HABERDSHER_2VHA-08", "current_price": 45.54, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501215588464", "sku": "XHW-2010281-yard", "dw_sku": "XHW-2010281", "mfr_sku": "REX_LV-RE-01", "current_price": 58.57, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501215981680", "sku": "XHW-2010283-yard", "dw_sku": "XHW-2010283", "mfr_sku": "REX_LV-RE-03", "current_price": 58.57, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501216178288", "sku": "XHW-2010285-yard", "dw_sku": "XHW-2010285", "mfr_sku": "REX_LV-RE-05", "current_price": 58.57, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501216407664", "sku": "XHW-2010286-yard", "dw_sku": "XHW-2010286", "mfr_sku": "REX_LV-RE-06", "current_price": 58.57, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501216800880", "sku": "XHW-2010287-yard", "dw_sku": "XHW-2010287", "mfr_sku": "REX_LV-RE-07", "current_price": 58.57, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501217030256", "sku": "XHW-2010288-yard", "dw_sku": "XHW-2010288", "mfr_sku": "REX_LV-RE-08", "current_price": 58.57, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501217226864", "sku": "XHW-2010290-yard", "dw_sku": "XHW-2010290", "mfr_sku": "REX_LV-RE-10", "current_price": 58.57, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501217456240", "sku": "XHW-2010293-yard", "dw_sku": "XHW-2010293", "mfr_sku": "REX_LV-RE-13", "current_price": 58.57, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501217685616", "sku": "XHW-2010294-yard", "dw_sku": "XHW-2010294", "mfr_sku": "REX_LV-RE-14", "current_price": 58.57, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501224173680", "sku": "XHW-2010308-yard", "dw_sku": "XHW-2010308", "mfr_sku": "ROUGH_HEWN_WOODS_SRH-01", "current_price": 70.15, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501224534128", "sku": "XHW-2010309-yard", "dw_sku": "XHW-2010309", "mfr_sku": "ROUGH_HEWN_WOODS_SRH-02", "current_price": 70.15, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501267787888", "sku": "XHW-20106-yard", "dw_sku": "XHW-20106", "mfr_sku": "Alegria_HAL-02", "current_price": 158.3, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501268312176", "sku": "XHW-20107-yard", "dw_sku": "XHW-20107", "mfr_sku": "Alegria_HAL-03", "current_price": 158.3, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501269295216", "sku": "XHW-20108-yard", "dw_sku": "XHW-20108", "mfr_sku": "Alegria_HAL-04", "current_price": 158.3, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501270147184", "sku": "XHW-20109-yard", "dw_sku": "XHW-20109", "mfr_sku": "Alegria_HAL-05", "current_price": 158.3, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501283156080", "sku": "XHW-201040-yard", "dw_sku": "XHW-201040", "mfr_sku": "201040", "current_price": 58.57, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501365960816", "sku": "XHW-2010162-yard", "dw_sku": "XHW-2010162", "mfr_sku": "HABERDSHER_2VHA-01", "current_price": 45.54, "uom": "Sold Per None", "width": "54\"", "reason": "hw_price 12.6 outside $15-72/yd band", "source_momentum_pattern": "Haberdasher"}
+{"shopify_product_id": "1501366190192", "sku": "XHW-2010168-yard", "dw_sku": "XHW-2010168", "mfr_sku": "HABERDSHER_2VHA-07", "current_price": 45.54, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501371891824", "sku": "XHW-2010284-yard", "dw_sku": "XHW-2010284", "mfr_sku": "REX_LV-RE-04", "current_price": 58.57, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501372088432", "sku": "XHW-2010289-yard", "dw_sku": "XHW-2010289", "mfr_sku": "REX_LV-RE-09", "current_price": 58.57, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "1501372285040", "sku": "XHW-2010292-yard", "dw_sku": "XHW-2010292", "mfr_sku": "REX_LV-RE-12", "current_price": 58.57, "uom": "Sold Per None", "width": "54\"", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936608833587", "sku": "XTW-989868-Sample", "dw_sku": "XTW-989868", "mfr_sku": "XTW-989868", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936608866355", "sku": "XTW-989867-Sample", "dw_sku": "XTW-989867", "mfr_sku": "XTW-989867", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936608899123", "sku": "XTW-989866-Sample", "dw_sku": "XTW-989866", "mfr_sku": "XTW-989866", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936682496051", "sku": "XXP-969060-Sample", "dw_sku": "XXP-969060", "mfr_sku": "T2-AT-01", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936682528819", "sku": "XXP-969061-Sample", "dw_sku": "XXP-969061", "mfr_sku": "T2-AT-02", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936682561587", "sku": "XXP-969062-Sample", "dw_sku": "XXP-969062", "mfr_sku": "T2-AT-03", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936682594355", "sku": "XXP-969063-Sample", "dw_sku": "XXP-969063", "mfr_sku": "T2-AT-06", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936682627123", "sku": "XXP-969064-Sample", "dw_sku": "XXP-969064", "mfr_sku": "T2-AT-14", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936682659891", "sku": "XXP-969065-Sample", "dw_sku": "XXP-969065", "mfr_sku": "T2-AT-15", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936682692659", "sku": "XXP-969066-Sample", "dw_sku": "XXP-969066", "mfr_sku": "T2-AT-16", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936682790963", "sku": "XXP-969067-Sample", "dw_sku": "XXP-969067", "mfr_sku": "T2-AT-17", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936682823731", "sku": "XXP-969068-Sample", "dw_sku": "XXP-969068", "mfr_sku": "T2-AT-18", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936682889267", "sku": "XXP-969069-Sample", "dw_sku": "XXP-969069", "mfr_sku": "T2-AT-19", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936682922035", "sku": "XXP-969070-Sample", "dw_sku": "XXP-969070", "mfr_sku": "T2-AT-20", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936682954803", "sku": "XXP-969071-Sample", "dw_sku": "XXP-969071", "mfr_sku": "T2-AT-21", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936682987571", "sku": "XXP-969072-Sample", "dw_sku": "XXP-969072", "mfr_sku": "T2-AT-22", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936685871155", "sku": "XXP-969148-Sample", "dw_sku": "XXP-969148", "mfr_sku": "T2-CN-01", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936685936691", "sku": "XXP-969149-Sample", "dw_sku": "XXP-969149", "mfr_sku": "T2-CN-04", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936685969459", "sku": "XXP-969150-Sample", "dw_sku": "XXP-969150", "mfr_sku": "T2-CN-05", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936686034995", "sku": "XXP-969151-Sample", "dw_sku": "XXP-969151", "mfr_sku": "T2-CN-11", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936686067763", "sku": "XXP-969152-Sample", "dw_sku": "XXP-969152", "mfr_sku": "T2-CN-12", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936686133299", "sku": "XXP-969153-Sample", "dw_sku": "XXP-969153", "mfr_sku": "T2-CN-15", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936686821427", "sku": "XXP-969173-Sample", "dw_sku": "XXP-969173", "mfr_sku": "T2-CS-01", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936686854195", "sku": "XXP-969174-Sample", "dw_sku": "XXP-969174", "mfr_sku": "T2-CS-02", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936686886963", "sku": "XXP-969175-Sample", "dw_sku": "XXP-969175", "mfr_sku": "T2-CS-03", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936686919731", "sku": "XXP-969176-Sample", "dw_sku": "XXP-969176", "mfr_sku": "T2-CS-04", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936686952499", "sku": "XXP-969177-Sample", "dw_sku": "XXP-969177", "mfr_sku": "T2-CS-05", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936686985267", "sku": "XXP-969178-Sample", "dw_sku": "XXP-969178", "mfr_sku": "T2-CS-06", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687247411", "sku": "XXP-969186-Sample", "dw_sku": "XXP-969186", "mfr_sku": "XXP-969186", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687411251", "sku": "XXP-969191-Sample", "dw_sku": "XXP-969191", "mfr_sku": "T2-DM-01", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687444019", "sku": "XXP-969192-Sample", "dw_sku": "XXP-969192", "mfr_sku": "T2-DM-02", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687476787", "sku": "XXP-969193-Sample", "dw_sku": "XXP-969193", "mfr_sku": "T2-DM-03", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687509555", "sku": "XXP-969194-Sample", "dw_sku": "XXP-969194", "mfr_sku": "T2-DM-04", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687542323", "sku": "XXP-969195-Sample", "dw_sku": "XXP-969195", "mfr_sku": "T2-DM-05", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687575091", "sku": "XXP-969196-Sample", "dw_sku": "XXP-969196", "mfr_sku": "T2-DM-06", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687607859", "sku": "XXP-969197-Sample", "dw_sku": "XXP-969197", "mfr_sku": "T2-DM-07", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687640627", "sku": "XXP-969198-Sample", "dw_sku": "XXP-969198", "mfr_sku": "T2-DM-08", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687673395", "sku": "XXP-969199-Sample", "dw_sku": "XXP-969199", "mfr_sku": "T2-DM-09", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687706163", "sku": "XXP-969200-Sample", "dw_sku": "XXP-969200", "mfr_sku": "T2-DM-10", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687771699", "sku": "XXP-969201-Sample", "dw_sku": "XXP-969201", "mfr_sku": "T2-DM-11", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687837235", "sku": "XXP-969204-Sample", "dw_sku": "XXP-969204", "mfr_sku": "T2-DM-11", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687870003", "sku": "XXP-969205-Sample", "dw_sku": "XXP-969205", "mfr_sku": "T2-DM-12", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687902771", "sku": "XXP-969206-Sample", "dw_sku": "XXP-969206", "mfr_sku": "T2-DM-13", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687935539", "sku": "XXP-969207-Sample", "dw_sku": "XXP-969207", "mfr_sku": "T2-DM-14", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936687968307", "sku": "XXP-969208-Sample", "dw_sku": "XXP-969208", "mfr_sku": "T2-DM-15", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936688001075", "sku": "XXP-969209-Sample", "dw_sku": "XXP-969209", "mfr_sku": "T2-DM-16", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936688066611", "sku": "XXP-969210-Sample", "dw_sku": "XXP-969210", "mfr_sku": "T2-DM-17", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936688099379", "sku": "XXP-969211-Sample", "dw_sku": "XXP-969211", "mfr_sku": "T2-EE-01", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936688132147", "sku": "XXP-969212-Sample", "dw_sku": "XXP-969212", "mfr_sku": "T2-EE-02", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936688164915", "sku": "XXP-969213-Sample", "dw_sku": "XXP-969213", "mfr_sku": "T2-EE-03", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936688197683", "sku": "XXP-969214-Sample", "dw_sku": "XXP-969214", "mfr_sku": "T2-EE-04", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936688230451", "sku": "XXP-969215-Sample", "dw_sku": "XXP-969215", "mfr_sku": "T2-EE-05", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936688263219", "sku": "XXP-969216-Sample", "dw_sku": "XXP-969216", "mfr_sku": "T2-EE-06", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936688328755", "sku": "XXP-969217-Sample", "dw_sku": "XXP-969217", "mfr_sku": "T2-EE-07", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936688361523", "sku": "XXP-969218-Sample", "dw_sku": "XXP-969218", "mfr_sku": "T2-EE-08", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936688394291", "sku": "XXP-969219-Sample", "dw_sku": "XXP-969219", "mfr_sku": "T2-EE-10", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936688427059", "sku": "XXP-969220-Sample", "dw_sku": "XXP-969220", "mfr_sku": "T2-EE-11", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936688459827", "sku": "XXP-969221-Sample", "dw_sku": "XXP-969221", "mfr_sku": "T2-EE-12", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936688492595", "sku": "XXP-969222-Sample", "dw_sku": "XXP-969222", "mfr_sku": "T2-EE-13", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936688525363", "sku": "XXP-969223-Sample", "dw_sku": "XXP-969223", "mfr_sku": "T2-EE-14", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936690130995", "sku": "XXP-969264-Sample", "dw_sku": "XXP-969264", "mfr_sku": "T2-ET-03", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936690163763", "sku": "XXP-969265-Sample", "dw_sku": "XXP-969265", "mfr_sku": "T2-ET-06", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936690196531", "sku": "XXP-969266-Sample", "dw_sku": "XXP-969266", "mfr_sku": "T2-ET-07", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936690229299", "sku": "XXP-969267-Sample", "dw_sku": "XXP-969267", "mfr_sku": "T2-ET-09", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936690327603", "sku": "XXP-969268-Sample", "dw_sku": "XXP-969268", "mfr_sku": "T2-ET-10", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936690360371", "sku": "XXP-969269-Sample", "dw_sku": "XXP-969269", "mfr_sku": "T2-ET-12", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936690425907", "sku": "XXP-969270-Sample", "dw_sku": "XXP-969270", "mfr_sku": "T2-ET-14", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936690458675", "sku": "XXP-969271-Sample", "dw_sku": "XXP-969271", "mfr_sku": "T2-ET-15", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936690556979", "sku": "XXP-969272-Sample", "dw_sku": "XXP-969272", "mfr_sku": "T2-ET-16", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936690688051", "sku": "XXP-969273-Sample", "dw_sku": "XXP-969273", "mfr_sku": "T2-ET-17", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936690720819", "sku": "XXP-969274-Sample", "dw_sku": "XXP-969274", "mfr_sku": "T2-ET-18", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936690753587", "sku": "XXP-969275-Sample", "dw_sku": "XXP-969275", "mfr_sku": "T2-ET-19", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936690819123", "sku": "XXP-969276-Sample", "dw_sku": "XXP-969276", "mfr_sku": "T2-ET-20", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936690917427", "sku": "XXP-969277-Sample", "dw_sku": "XXP-969277", "mfr_sku": "T2-ET-21", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936691048499", "sku": "XXP-969278-Sample", "dw_sku": "XXP-969278", "mfr_sku": "T2-ET-22", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936691081267", "sku": "XXP-969279-Sample", "dw_sku": "XXP-969279", "mfr_sku": "T2-ET-23", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936694259763", "sku": "XXP-969364-Sample", "dw_sku": "XXP-969364", "mfr_sku": "T2-GR-01", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936694292531", "sku": "XXP-969366-Sample", "dw_sku": "XXP-969366", "mfr_sku": "T2-GR-02", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936694390835", "sku": "XXP-969367-Sample", "dw_sku": "XXP-969367", "mfr_sku": "T2-GR-03", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936694423603", "sku": "XXP-969368-Sample", "dw_sku": "XXP-969368", "mfr_sku": "T2-GR-04", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936694489139", "sku": "XXP-969370-Sample", "dw_sku": "XXP-969370", "mfr_sku": "T2-GR-06", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936694554675", "sku": "XXP-969372-Sample", "dw_sku": "XXP-969372", "mfr_sku": "T2-GR-07", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936694587443", "sku": "XXP-969373-Sample", "dw_sku": "XXP-969373", "mfr_sku": "T2-GR-08", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936694652979", "sku": "XXP-969374-Sample", "dw_sku": "XXP-969374", "mfr_sku": "T2-GR-09", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936694718515", "sku": "XXP-969376-Sample", "dw_sku": "XXP-969376", "mfr_sku": "T2-GR-11", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936694751283", "sku": "XXP-969378-Sample", "dw_sku": "XXP-969378", "mfr_sku": "T2-GR-12", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936694784051", "sku": "XXP-969379-Sample", "dw_sku": "XXP-969379", "mfr_sku": "T2-GR-13", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936694816819", "sku": "XXP-969380-Sample", "dw_sku": "XXP-969380", "mfr_sku": "T2-GR-14", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936694849587", "sku": "XXP-969381-Sample", "dw_sku": "XXP-969381", "mfr_sku": "T2-GR-15", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936694882355", "sku": "XXP-969382-Sample", "dw_sku": "XXP-969382", "mfr_sku": "T2-GR-16", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936694980659", "sku": "XXP-969385-Sample", "dw_sku": "XXP-969385", "mfr_sku": "T2-GR-17", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936695013427", "sku": "XXP-969386-Sample", "dw_sku": "XXP-969386", "mfr_sku": "T2-GR-18", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936695046195", "sku": "XXP-969387-Sample", "dw_sku": "XXP-969387", "mfr_sku": "T2-GR-19", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936699895859", "sku": "XXP-969513-Sample", "dw_sku": "XXP-969513", "mfr_sku": "T2-LT-20", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936699961395", "sku": "XXP-969514-Sample", "dw_sku": "XXP-969514", "mfr_sku": "T2-LT-21", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936699994163", "sku": "XXP-969515-Sample", "dw_sku": "XXP-969515", "mfr_sku": "T2-LT-22", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700026931", "sku": "XXP-969516-Sample", "dw_sku": "XXP-969516", "mfr_sku": "T2-LT-23", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700059699", "sku": "XXP-969517-Sample", "dw_sku": "XXP-969517", "mfr_sku": "T2-LT-24", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700092467", "sku": "XXP-969518-Sample", "dw_sku": "XXP-969518", "mfr_sku": "T2-LT-25", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700125235", "sku": "XXP-969519-Sample", "dw_sku": "XXP-969519", "mfr_sku": "T2-LT-26", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700158003", "sku": "XXP-969520-Sample", "dw_sku": "XXP-969520", "mfr_sku": "T2-LT-27", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700190771", "sku": "XXP-969521-Sample", "dw_sku": "XXP-969521", "mfr_sku": "T2-LT-28", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700223539", "sku": "XXP-969522-Sample", "dw_sku": "XXP-969522", "mfr_sku": "T2-LT-29", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700256307", "sku": "XXP-969523-Sample", "dw_sku": "XXP-969523", "mfr_sku": "T2-LT-30", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700289075", "sku": "XXP-969524-Sample", "dw_sku": "XXP-969524", "mfr_sku": "T2-LT-31", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700321843", "sku": "XXP-969525-Sample", "dw_sku": "XXP-969525", "mfr_sku": "T2-LT-32", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700354611", "sku": "XXP-969526-Sample", "dw_sku": "XXP-969526", "mfr_sku": "T2-LT-33", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700387379", "sku": "XXP-969527-Sample", "dw_sku": "XXP-969527", "mfr_sku": "T2-LT-34", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700420147", "sku": "XXP-969528-Sample", "dw_sku": "XXP-969528", "mfr_sku": "T2-LT-35", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700452915", "sku": "XXP-969529-Sample", "dw_sku": "XXP-969529", "mfr_sku": "T2-LT-36", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700485683", "sku": "XXP-969530-Sample", "dw_sku": "XXP-969530", "mfr_sku": "T2-LT-37", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700518451", "sku": "XXP-969531-Sample", "dw_sku": "XXP-969531", "mfr_sku": "T2-LT-38", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700551219", "sku": "XXP-969532-Sample", "dw_sku": "XXP-969532", "mfr_sku": "T2-LT-39", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700583987", "sku": "XXP-969533-Sample", "dw_sku": "XXP-969533", "mfr_sku": "T2-LT-40", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700616755", "sku": "XXP-969534-Sample", "dw_sku": "XXP-969534", "mfr_sku": "T2-LT-41", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700649523", "sku": "XXP-969535-Sample", "dw_sku": "XXP-969535", "mfr_sku": "T2-LU-01", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700682291", "sku": "XXP-969536-Sample", "dw_sku": "XXP-969536", "mfr_sku": "T2-LU-02", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700715059", "sku": "XXP-969537-Sample", "dw_sku": "XXP-969537", "mfr_sku": "T2-LU-03", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700747827", "sku": "XXP-969538-Sample", "dw_sku": "XXP-969538", "mfr_sku": "T2-LU-04", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700780595", "sku": "XXP-969539-Sample", "dw_sku": "XXP-969539", "mfr_sku": "T2-LU-05", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700846131", "sku": "XXP-969540-Sample", "dw_sku": "XXP-969540", "mfr_sku": "T2-LU-06", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700878899", "sku": "XXP-969541-Sample", "dw_sku": "XXP-969541", "mfr_sku": "T2-LU-07", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936700911667", "sku": "XXP-969542-Sample", "dw_sku": "XXP-969542", "mfr_sku": "T2-LU-08", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936702976051", "sku": "XXP-969597-Sample", "dw_sku": "XXP-969597", "mfr_sku": "T2-NW-01", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703008819", "sku": "XXP-969598-Sample", "dw_sku": "XXP-969598", "mfr_sku": "T2-NW-02", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703041587", "sku": "XXP-969599-Sample", "dw_sku": "XXP-969599", "mfr_sku": "T2-NW-03", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703074355", "sku": "XXP-969600-Sample", "dw_sku": "XXP-969600", "mfr_sku": "T2-NW-04", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703107123", "sku": "XXP-969601-Sample", "dw_sku": "XXP-969601", "mfr_sku": "T2-NW-05", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703139891", "sku": "XXP-969602-Sample", "dw_sku": "XXP-969602", "mfr_sku": "T2-NW-06", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703172659", "sku": "XXP-969603-Sample", "dw_sku": "XXP-969603", "mfr_sku": "T2-NW-07", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703205427", "sku": "XXP-969604-Sample", "dw_sku": "XXP-969604", "mfr_sku": "T2-NW-08", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703238195", "sku": "XXP-969605-Sample", "dw_sku": "XXP-969605", "mfr_sku": "T2-NW-09", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703270963", "sku": "XXP-969606-Sample", "dw_sku": "XXP-969606", "mfr_sku": "T2-SB-01", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703303731", "sku": "XXP-969607-Sample", "dw_sku": "XXP-969607", "mfr_sku": "T2-SB-02", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703369267", "sku": "XXP-969608-Sample", "dw_sku": "XXP-969608", "mfr_sku": "T2-SB-03", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703402035", "sku": "XXP-969609-Sample", "dw_sku": "XXP-969609", "mfr_sku": "T2-SB-04", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703434803", "sku": "XXP-969610-Sample", "dw_sku": "XXP-969610", "mfr_sku": "T2-SB-05", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703467571", "sku": "XXP-969611-Sample", "dw_sku": "XXP-969611", "mfr_sku": "T2-SB-06", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703500339", "sku": "XXP-969612-Sample", "dw_sku": "XXP-969612", "mfr_sku": "T2-SB-07", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703533107", "sku": "XXP-969613-Sample", "dw_sku": "XXP-969613", "mfr_sku": "T2-SB-08", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703565875", "sku": "XXP-969614-Sample", "dw_sku": "XXP-969614", "mfr_sku": "T2-SB-09", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703631411", "sku": "XXP-969615-Sample", "dw_sku": "XXP-969615", "mfr_sku": "T2-SB-10", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703664179", "sku": "XXP-969616-Sample", "dw_sku": "XXP-969616", "mfr_sku": "T2-SB-11", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703696947", "sku": "XXP-969617-Sample", "dw_sku": "XXP-969617", "mfr_sku": "T2-SB-12", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703729715", "sku": "XXP-969618-Sample", "dw_sku": "XXP-969618", "mfr_sku": "T2-SB-13", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703795251", "sku": "XXP-969619-Sample", "dw_sku": "XXP-969619", "mfr_sku": "T2-SB-14", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703893555", "sku": "XXP-969620-Sample", "dw_sku": "XXP-969620", "mfr_sku": "T2-SB-15", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703926323", "sku": "XXP-969621-Sample", "dw_sku": "XXP-969621", "mfr_sku": "T2-SB-16", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703959091", "sku": "XXP-969622-Sample", "dw_sku": "XXP-969622", "mfr_sku": "T2-SB-17", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936703991859", "sku": "XXP-969623-Sample", "dw_sku": "XXP-969623", "mfr_sku": "T2-SB-18", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704024627", "sku": "XXP-969624-Sample", "dw_sku": "XXP-969624", "mfr_sku": "T2-SB-19", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704057395", "sku": "XXP-969625-Sample", "dw_sku": "XXP-969625", "mfr_sku": "T2-SB-20", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704090163", "sku": "XXP-969626-Sample", "dw_sku": "XXP-969626", "mfr_sku": "T2-SB-21", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704352307", "sku": "XXP-969634-Sample", "dw_sku": "XXP-969634", "mfr_sku": "T2-SF-01", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704385075", "sku": "XXP-969635-Sample", "dw_sku": "XXP-969635", "mfr_sku": "T2-SF-02", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704417843", "sku": "XXP-969636-Sample", "dw_sku": "XXP-969636", "mfr_sku": "T2-SF-03", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704450611", "sku": "XXP-969637-Sample", "dw_sku": "XXP-969637", "mfr_sku": "T2-SF-04", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704483379", "sku": "XXP-969638-Sample", "dw_sku": "XXP-969638", "mfr_sku": "T2-SF-05", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704516147", "sku": "XXP-969639-Sample", "dw_sku": "XXP-969639", "mfr_sku": "T2-SF-06", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704548915", "sku": "XXP-969640-Sample", "dw_sku": "XXP-969640", "mfr_sku": "T2-SF-07", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704614451", "sku": "XXP-969641-Sample", "dw_sku": "XXP-969641", "mfr_sku": "T2-SF-08", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704679987", "sku": "XXP-969643-Sample", "dw_sku": "XXP-969643", "mfr_sku": "T2-SF-10", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704712755", "sku": "XXP-969644-Sample", "dw_sku": "XXP-969644", "mfr_sku": "T2-SF-11", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704745523", "sku": "XXP-969645-Sample", "dw_sku": "XXP-969645", "mfr_sku": "T2-SF-12", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704778291", "sku": "XXP-969646-Sample", "dw_sku": "XXP-969646", "mfr_sku": "T2-SF-13", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704811059", "sku": "XXP-969647-Sample", "dw_sku": "XXP-969647", "mfr_sku": "T2-SF-14", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704843827", "sku": "XXP-969648-Sample", "dw_sku": "XXP-969648", "mfr_sku": "T2-SF-15", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704876595", "sku": "XXP-969649-Sample", "dw_sku": "XXP-969649", "mfr_sku": "T2-SF-16", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704909363", "sku": "XXP-969650-Sample", "dw_sku": "XXP-969650", "mfr_sku": "T2-SF-17", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936704942131", "sku": "XXP-969651-Sample", "dw_sku": "XXP-969651", "mfr_sku": "T2-SF-18", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936705630259", "sku": "XXP-969672-Sample", "dw_sku": "XXP-969672", "mfr_sku": "T2-SK-01", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936705663027", "sku": "XXP-969673-Sample", "dw_sku": "XXP-969673", "mfr_sku": "T2-SK-02", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936705695795", "sku": "XXP-969674-Sample", "dw_sku": "XXP-969674", "mfr_sku": "T2-SK-03", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936705728563", "sku": "XXP-969675-Sample", "dw_sku": "XXP-969675", "mfr_sku": "T2-SK-04", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936705761331", "sku": "XXP-969676-Sample", "dw_sku": "XXP-969676", "mfr_sku": "T2-SK-05", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936705794099", "sku": "XXP-969677-Sample", "dw_sku": "XXP-969677", "mfr_sku": "T2-SK-06", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936705826867", "sku": "XXP-969678-Sample", "dw_sku": "XXP-969678", "mfr_sku": "T2-SK-07", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936705859635", "sku": "XXP-969679-Sample", "dw_sku": "XXP-969679", "mfr_sku": "T2-SK-08", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936708907059", "sku": "XXP-969764-Sample", "dw_sku": "XXP-969764", "mfr_sku": "T2-WN-01", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936708972595", "sku": "XXP-969765-Sample", "dw_sku": "XXP-969765", "mfr_sku": "T2-WN-02", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709005363", "sku": "XXP-969766-Sample", "dw_sku": "XXP-969766", "mfr_sku": "T2-WN-03", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709038131", "sku": "XXP-969767-Sample", "dw_sku": "XXP-969767", "mfr_sku": "T2-WN-04", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709070899", "sku": "XXP-969768-Sample", "dw_sku": "XXP-969768", "mfr_sku": "T2-WN-05", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709103667", "sku": "XXP-969769-Sample", "dw_sku": "XXP-969769", "mfr_sku": "T2-WN-06", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709136435", "sku": "XXP-969770-Sample", "dw_sku": "XXP-969770", "mfr_sku": "T2-WN-07", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709169203", "sku": "XXP-969771-Sample", "dw_sku": "XXP-969771", "mfr_sku": "T2-WN-08", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709201971", "sku": "XXP-969772-Sample", "dw_sku": "XXP-969772", "mfr_sku": "T2-WN-09", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709234739", "sku": "XXP-969773-Sample", "dw_sku": "XXP-969773", "mfr_sku": "T2-WN-10", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709267507", "sku": "XXP-969774-Sample", "dw_sku": "XXP-969774", "mfr_sku": "T2-WN-11", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709300275", "sku": "XXP-969775-Sample", "dw_sku": "XXP-969775", "mfr_sku": "T2-WN-12", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709333043", "sku": "XXP-969776-Sample", "dw_sku": "XXP-969776", "mfr_sku": "T2-WN-13", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709365811", "sku": "XXP-969777-Sample", "dw_sku": "XXP-969777", "mfr_sku": "T2-WN-14", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709398579", "sku": "XXP-969778-Sample", "dw_sku": "XXP-969778", "mfr_sku": "T2-WN-15", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709431347", "sku": "XXP-969779-Sample", "dw_sku": "XXP-969779", "mfr_sku": "T2-WN-16", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709464115", "sku": "XXP-969780-Sample", "dw_sku": "XXP-969780", "mfr_sku": "T2-WN-17", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709496883", "sku": "XXP-969781-Sample", "dw_sku": "XXP-969781", "mfr_sku": "T2-WN-18", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709529651", "sku": "XXP-969782-Sample", "dw_sku": "XXP-969782", "mfr_sku": "T2-WN-19", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709562419", "sku": "XXP-969783-Sample", "dw_sku": "XXP-969783", "mfr_sku": "T2-WN-20", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709595187", "sku": "XXP-969784-Sample", "dw_sku": "XXP-969784", "mfr_sku": "T2-WN-21", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709627955", "sku": "XXP-969785-Sample", "dw_sku": "XXP-969785", "mfr_sku": "T2-WN-22", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709660723", "sku": "XXP-969786-Sample", "dw_sku": "XXP-969786", "mfr_sku": "T2-WN-23", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709693491", "sku": "XXP-969787-Sample", "dw_sku": "XXP-969787", "mfr_sku": "T2-WN-24", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936709726259", "sku": "XXP-969788-Sample", "dw_sku": "XXP-969788", "mfr_sku": "T2-WN-25", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936710971443", "sku": "XXP-969819-Sample", "dw_sku": "XXP-969819", "mfr_sku": "TR-CL-01", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "City Linen"}
+{"shopify_product_id": "6936711004211", "sku": "XXP-969820-Sample", "dw_sku": "XXP-969820", "mfr_sku": "TR-CL-02", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "City Linen"}
+{"shopify_product_id": "6936711036979", "sku": "XXP-969821-Sample", "dw_sku": "XXP-969821", "mfr_sku": "TR-CL-03", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "City Linen"}
+{"shopify_product_id": "6936711069747", "sku": "XXP-969822-Sample", "dw_sku": "XXP-969822", "mfr_sku": "TR-CL-07", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "City Linen"}
+{"shopify_product_id": "6936711102515", "sku": "XXP-969823-Sample", "dw_sku": "XXP-969823", "mfr_sku": "TR-CL-08", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "City Linen"}
+{"shopify_product_id": "6936711135283", "sku": "XXP-969824-Sample", "dw_sku": "XXP-969824", "mfr_sku": "TR-CL-09", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "City Linen"}
+{"shopify_product_id": "6936711168051", "sku": "XXP-969825-Sample", "dw_sku": "XXP-969825", "mfr_sku": "TR-CL-10", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "City Linen"}
+{"shopify_product_id": "6936711200819", "sku": "XXP-969826-Sample", "dw_sku": "XXP-969826", "mfr_sku": "TR-CL-11", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "City Linen"}
+{"shopify_product_id": "6936711266355", "sku": "XXP-969827-Sample", "dw_sku": "XXP-969827", "mfr_sku": "TR-CL-12", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "City Linen"}
+{"shopify_product_id": "6936711299123", "sku": "XXP-969828-Sample", "dw_sku": "XXP-969828", "mfr_sku": "TR-CL-13", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "City Linen"}
+{"shopify_product_id": "6936711331891", "sku": "XXP-969829-Sample", "dw_sku": "XXP-969829", "mfr_sku": "TR-CL-14", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "City Linen"}
+{"shopify_product_id": "6936711364659", "sku": "XXP-969830-Sample", "dw_sku": "XXP-969830", "mfr_sku": "TR-CL-16", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "City Linen"}
+{"shopify_product_id": "6936711397427", "sku": "XXP-969831-Sample", "dw_sku": "XXP-969831", "mfr_sku": "TR-CL-17", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "City Linen"}
+{"shopify_product_id": "6936711430195", "sku": "XXP-969832-Sample", "dw_sku": "XXP-969832", "mfr_sku": "TR-CL-18", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "City Linen"}
+{"shopify_product_id": "6936711462963", "sku": "XXP-969833-Sample", "dw_sku": "XXP-969833", "mfr_sku": "TR-CL-19", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "City Linen"}
+{"shopify_product_id": "6936711495731", "sku": "XXP-969834-Sample", "dw_sku": "XXP-969834", "mfr_sku": "TR-DC-01", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "Double Cross"}
+{"shopify_product_id": "6936711528499", "sku": "XXP-969835-Sample", "dw_sku": "XXP-969835", "mfr_sku": "TR-DC-07", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "Double Cross"}
+{"shopify_product_id": "6936711561267", "sku": "XXP-969836-Sample", "dw_sku": "XXP-969836", "mfr_sku": "TR-DC-08", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "Double Cross"}
+{"shopify_product_id": "6936711594035", "sku": "XXP-969837-Sample", "dw_sku": "XXP-969837", "mfr_sku": "TR-DC-13", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "Double Cross"}
+{"shopify_product_id": "6936711626803", "sku": "XXP-969838-Sample", "dw_sku": "XXP-969838", "mfr_sku": "TR-DC-14", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "Double Cross"}
+{"shopify_product_id": "6936711659571", "sku": "XXP-969839-Sample", "dw_sku": "XXP-969839", "mfr_sku": "TR-DC-16", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "Double Cross"}
+{"shopify_product_id": "6936711692339", "sku": "XXP-969840-Sample", "dw_sku": "XXP-969840", "mfr_sku": "TR-LT-01", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936711725107", "sku": "XXP-969841-Sample", "dw_sku": "XXP-969841", "mfr_sku": "TR-LT-12", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936711757875", "sku": "XXP-969842-Sample", "dw_sku": "XXP-969842", "mfr_sku": "TR-LT-16", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936711790643", "sku": "XXP-969843-Sample", "dw_sku": "XXP-969843", "mfr_sku": "TR-LT-17", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936711823411", "sku": "XXP-969844-Sample", "dw_sku": "XXP-969844", "mfr_sku": "TR-VT-01", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "Nile Vine Texture"}
+{"shopify_product_id": "6936711856179", "sku": "XXP-969845-Sample", "dw_sku": "XXP-969845", "mfr_sku": "TR-VT-13", "current_price": null, "uom": null, "width": "", "reason": "no sellable variant found", "source_momentum_pattern": "Nile Vine Texture"}
+{"shopify_product_id": "6936711888947", "sku": "XXP-969846-Sample", "dw_sku": "XXP-969846", "mfr_sku": "TR-ZG-13", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936711921715", "sku": "XXP-969847-Sample", "dw_sku": "XXP-969847", "mfr_sku": "TR-ZG-15", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936752095283", "sku": "XTY-949020-Sample", "dw_sku": "XTY-949020", "mfr_sku": "CM149-2815", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936752554035", "sku": "XTY-949031-Sample", "dw_sku": "XTY-949031", "mfr_sku": "Stelvio CM155-2879", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936752586803", "sku": "XTY-949032-Sample", "dw_sku": "XTY-949032", "mfr_sku": "Stelvio CM155-2880", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936752685107", "sku": "XTY-949033-Sample", "dw_sku": "XTY-949033", "mfr_sku": "Stelvio CM155-2881", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936752717875", "sku": "XTY-949034-Sample", "dw_sku": "XTY-949034", "mfr_sku": "Stelvio CM155-2882", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936752750643", "sku": "XTY-949035-Sample", "dw_sku": "XTY-949035", "mfr_sku": "Stelvio CM155-2883", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936752783411", "sku": "XTY-949036-Sample", "dw_sku": "XTY-949036", "mfr_sku": "Stelvio CM155-2884", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936752848947", "sku": "XTY-949037-Sample", "dw_sku": "XTY-949037", "mfr_sku": "Stelvio CM155-2885", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936752881715", "sku": "XTY-949038-Sample", "dw_sku": "XTY-949038", "mfr_sku": "Stelvio CM155-2886", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936752914483", "sku": "XTY-949039-Sample", "dw_sku": "XTY-949039", "mfr_sku": "Stelvio CM155-2887", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936752947251", "sku": "XTY-949040-Sample", "dw_sku": "XTY-949040", "mfr_sku": "Stelvio CM155-2888", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936752980019", "sku": "XTY-949041-Sample", "dw_sku": "XTY-949041", "mfr_sku": "Stelvio CM155-2889", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753012787", "sku": "XTY-949042-Sample", "dw_sku": "XTY-949042", "mfr_sku": "Stelvio CM155-2890", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753045555", "sku": "XTY-949043-Sample", "dw_sku": "XTY-949043", "mfr_sku": "Stelvio CM155-2891", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753078323", "sku": "XTY-949044-Sample", "dw_sku": "XTY-949044", "mfr_sku": "Stelvio CM155-2892", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753111091", "sku": "XTY-949045-Sample", "dw_sku": "XTY-949045", "mfr_sku": "Stelvio CM155-2893", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753143859", "sku": "XTY-949046-Sample", "dw_sku": "XTY-949046", "mfr_sku": "Stelvio CM155-2894", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753176627", "sku": "XTY-949047-Sample", "dw_sku": "XTY-949047", "mfr_sku": "Stelvio CM155-2895", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753209395", "sku": "XTY-949048-Sample", "dw_sku": "XTY-949048", "mfr_sku": "Autobahn CG301-8109", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753242163", "sku": "XTY-949049-Sample", "dw_sku": "XTY-949049", "mfr_sku": "Autobahn CG301-8110", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753274931", "sku": "XTY-949050-Sample", "dw_sku": "XTY-949050", "mfr_sku": "Autobahn CG301-8111", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753307699", "sku": "XTY-949051-Sample", "dw_sku": "XTY-949051", "mfr_sku": "Autobahn CG301-8112", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753340467", "sku": "XTY-949052-Sample", "dw_sku": "XTY-949052", "mfr_sku": "Impact CM154-2867", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753373235", "sku": "XTY-949053-Sample", "dw_sku": "XTY-949053", "mfr_sku": "Impact CM154-2868", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753537075", "sku": "XTY-949054-Sample", "dw_sku": "XTY-949054", "mfr_sku": "Impact CM154-2869", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753569843", "sku": "XTY-949055-Sample", "dw_sku": "XTY-949055", "mfr_sku": "Impact CM154-2870", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753602611", "sku": "XTY-949056-Sample", "dw_sku": "XTY-949056", "mfr_sku": "Impact CM154-2871", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753668147", "sku": "XTY-949057-Sample", "dw_sku": "XTY-949057", "mfr_sku": "Impact CM154-2872", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753700915", "sku": "XTY-949058-Sample", "dw_sku": "XTY-949058", "mfr_sku": "Impact CM154-2873", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753733683", "sku": "XTY-949059-Sample", "dw_sku": "XTY-949059", "mfr_sku": "Impact CM154-2874", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753766451", "sku": "XTY-949060-Sample", "dw_sku": "XTY-949060", "mfr_sku": "Impact CM154-2875", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753799219", "sku": "XTY-949061-Sample", "dw_sku": "XTY-949061", "mfr_sku": "Impact CM154-2876", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753831987", "sku": "XTY-949062-Sample", "dw_sku": "XTY-949062", "mfr_sku": "Impact CM154-2877", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753897523", "sku": "XTY-949063-Sample", "dw_sku": "XTY-949063", "mfr_sku": "Impact CM154-2878", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753930291", "sku": "XTY-949065-Sample", "dw_sku": "XTY-949065", "mfr_sku": "CM153-2853", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753963059", "sku": "XTY-949066-Sample", "dw_sku": "XTY-949066", "mfr_sku": "CM153-2854", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936753995827", "sku": "XTY-949067-Sample", "dw_sku": "XTY-949067", "mfr_sku": "CM153-2855", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754028595", "sku": "XTY-949068-Sample", "dw_sku": "XTY-949068", "mfr_sku": "CM153-2856", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754094131", "sku": "XTY-949069-Sample", "dw_sku": "XTY-949069", "mfr_sku": "CM153-2857", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754126899", "sku": "XTY-949070-Sample", "dw_sku": "XTY-949070", "mfr_sku": "CM153-2858", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754159667", "sku": "XTY-949071-Sample", "dw_sku": "XTY-949071", "mfr_sku": "CM153-2859", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754192435", "sku": "XTY-949072-Sample", "dw_sku": "XTY-949072", "mfr_sku": "CM153-2860", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754225203", "sku": "XTY-949073-Sample", "dw_sku": "XTY-949073", "mfr_sku": "CM153-2861", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754257971", "sku": "XTY-949074-Sample", "dw_sku": "XTY-949074", "mfr_sku": "CM153-2862", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754290739", "sku": "XTY-949075-Sample", "dw_sku": "XTY-949075", "mfr_sku": "CM153-2863", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754323507", "sku": "XTY-949076-Sample", "dw_sku": "XTY-949076", "mfr_sku": "CM153-2864", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754356275", "sku": "XTY-949077-Sample", "dw_sku": "XTY-949077", "mfr_sku": "CM153-2865", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754421811", "sku": "XTY-949079-Sample", "dw_sku": "XTY-949079", "mfr_sku": "CM153-2866", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754454579", "sku": "XTY-949080-Sample", "dw_sku": "XTY-949080", "mfr_sku": "Luminata CM152-2838", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754487347", "sku": "XTY-949081-Sample", "dw_sku": "XTY-949081", "mfr_sku": "Luminata CM152-2839", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754520115", "sku": "XTY-949082-Sample", "dw_sku": "XTY-949082", "mfr_sku": "Luminata CM152-2840", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754585651", "sku": "XTY-949083-Sample", "dw_sku": "XTY-949083", "mfr_sku": "Luminata CM152-2841", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754618419", "sku": "XTY-949084-Sample", "dw_sku": "XTY-949084", "mfr_sku": "Luminata CM152-2842", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754651187", "sku": "XTY-949085-Sample", "dw_sku": "XTY-949085", "mfr_sku": "Luminata CM152-2843", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754683955", "sku": "XTY-949086-Sample", "dw_sku": "XTY-949086", "mfr_sku": "Luminata CM152-2844", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754716723", "sku": "XTY-949087-Sample", "dw_sku": "XTY-949087", "mfr_sku": "Luminata CM152-2845", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754749491", "sku": "XTY-949088-Sample", "dw_sku": "XTY-949088", "mfr_sku": "Luminata CM152-2846", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754782259", "sku": "XTY-949089-Sample", "dw_sku": "XTY-949089", "mfr_sku": "Luminata CM152-2847", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754815027", "sku": "XTY-949090-Sample", "dw_sku": "XTY-949090", "mfr_sku": "Luminata CM152-2848", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754847795", "sku": "XTY-949091-Sample", "dw_sku": "XTY-949091", "mfr_sku": "Luminata CM152-2849", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754880563", "sku": "XTY-949092-Sample", "dw_sku": "XTY-949092", "mfr_sku": "Luminata CM152-2850", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754913331", "sku": "XTY-949093-Sample", "dw_sku": "XTY-949093", "mfr_sku": "Luminata CM152-2851", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754946099", "sku": "XTY-949094-Sample", "dw_sku": "XTY-949094", "mfr_sku": "Luminata CM152-2852", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936754978867", "sku": "XTY-949096-Sample", "dw_sku": "XTY-949096", "mfr_sku": "Anatolia CM151-2827", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755011635", "sku": "XTY-949097-Sample", "dw_sku": "XTY-949097", "mfr_sku": "Anatolia CM151-2828", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755044403", "sku": "XTY-949098-Sample", "dw_sku": "XTY-949098", "mfr_sku": "Anatolia CM151-2829", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755077171", "sku": "XTY-949099-Sample", "dw_sku": "XTY-949099", "mfr_sku": "Anatolia CM151-2830", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755142707", "sku": "XTY-949100-Sample", "dw_sku": "XTY-949100", "mfr_sku": "Anatolia CM151-2831", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755175475", "sku": "XTY-949101-Sample", "dw_sku": "XTY-949101", "mfr_sku": "Anatolia CM151-2832", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755208243", "sku": "XTY-949102-Sample", "dw_sku": "XTY-949102", "mfr_sku": "Anatolia CM151-2833", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755241011", "sku": "XTY-949103-Sample", "dw_sku": "XTY-949103", "mfr_sku": "Anatolia CM151-2834", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755273779", "sku": "XTY-949104-Sample", "dw_sku": "XTY-949104", "mfr_sku": "Anatolia CM151-2835", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755306547", "sku": "XTY-949105-Sample", "dw_sku": "XTY-949105", "mfr_sku": "Anatolia CM151-2836", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755339315", "sku": "XTY-949106-Sample", "dw_sku": "XTY-949106", "mfr_sku": "Anatolia CM151-2837", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755372083", "sku": "XTY-949108-Sample", "dw_sku": "XTY-949108", "mfr_sku": "CM150-2820", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755437619", "sku": "XTY-949109-Sample", "dw_sku": "XTY-949109", "mfr_sku": "CM150-2821", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755470387", "sku": "XTY-949110-Sample", "dw_sku": "XTY-949110", "mfr_sku": "CM150-2822", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755503155", "sku": "XTY-949111-Sample", "dw_sku": "XTY-949111", "mfr_sku": "CM150-2823", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755568691", "sku": "XTY-949112-Sample", "dw_sku": "XTY-949112", "mfr_sku": "CM150-2824", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755634227", "sku": "XTY-949113-Sample", "dw_sku": "XTY-949113", "mfr_sku": "CM150-2825", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755666995", "sku": "XTY-949114-Sample", "dw_sku": "XTY-949114", "mfr_sku": "CM150-2826", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755699763", "sku": "XTY-949116-Sample", "dw_sku": "XTY-949116", "mfr_sku": "Status Geo CM149-2813", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755732531", "sku": "XTY-949117-Sample", "dw_sku": "XTY-949117", "mfr_sku": "CM149-2814", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755765299", "sku": "XTY-949118-Sample", "dw_sku": "XTY-949118", "mfr_sku": "Status Geo CM149-2815", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755798067", "sku": "XTY-949119-Sample", "dw_sku": "XTY-949119", "mfr_sku": "Status Geo CM149-2816", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755830835", "sku": "XTY-949120-Sample", "dw_sku": "XTY-949120", "mfr_sku": "Status Geo CM149-2817", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755863603", "sku": "XTY-949121-Sample", "dw_sku": "XTY-949121", "mfr_sku": "CM149-2818", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755896371", "sku": "XTY-949122-Sample", "dw_sku": "XTY-949122", "mfr_sku": "CM149-2819", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755961907", "sku": "XTY-949124-Sample", "dw_sku": "XTY-949124", "mfr_sku": "CM148-2804", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936755994675", "sku": "XTY-949125-Sample", "dw_sku": "XTY-949125", "mfr_sku": "CM148-2805", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756027443", "sku": "XTY-949126-Sample", "dw_sku": "XTY-949126", "mfr_sku": "CM148-2806", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756060211", "sku": "XTY-949127-Sample", "dw_sku": "XTY-949127", "mfr_sku": "CM148-2807", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756092979", "sku": "XTY-949128-Sample", "dw_sku": "XTY-949128", "mfr_sku": "CM148-2808", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756125747", "sku": "XTY-949129-Sample", "dw_sku": "XTY-949129", "mfr_sku": "CM148-2809", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756158515", "sku": "XTY-949130-Sample", "dw_sku": "XTY-949130", "mfr_sku": "CM148-2810", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756224051", "sku": "XTY-949131-Sample", "dw_sku": "XTY-949131", "mfr_sku": "CM148-2811", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756256819", "sku": "XTY-949132-Sample", "dw_sku": "XTY-949132", "mfr_sku": "CM148-2812", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756289587", "sku": "XTY-949134-Sample", "dw_sku": "XTY-949134", "mfr_sku": "WoodGrain CM147-2789", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756322355", "sku": "XTY-949135-Sample", "dw_sku": "XTY-949135", "mfr_sku": "WoodGrain CM147-2790", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756355123", "sku": "XTY-949136-Sample", "dw_sku": "XTY-949136", "mfr_sku": "WoodGrain CM147-2791", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756387891", "sku": "XTY-949137-Sample", "dw_sku": "XTY-949137", "mfr_sku": "WoodGrain CM147-2792", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756420659", "sku": "XTY-949138-Sample", "dw_sku": "XTY-949138", "mfr_sku": "WoodGrain CM147-2793", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756453427", "sku": "XTY-949139-Sample", "dw_sku": "XTY-949139", "mfr_sku": "WoodGrain CM147-2794", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756486195", "sku": "XTY-949140-Sample", "dw_sku": "XTY-949140", "mfr_sku": "WoodGrain CM147-2795", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756518963", "sku": "XTY-949141-Sample", "dw_sku": "XTY-949141", "mfr_sku": "WoodGrain CM147-2796", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756551731", "sku": "XTY-949142-Sample", "dw_sku": "XTY-949142", "mfr_sku": "WoodGrain CM147-2797", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756584499", "sku": "XTY-949143-Sample", "dw_sku": "XTY-949143", "mfr_sku": "WoodGrain CM147-2798", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756650035", "sku": "XTY-949144-Sample", "dw_sku": "XTY-949144", "mfr_sku": "WoodGrain CM147-2799", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756682803", "sku": "XTY-949145-Sample", "dw_sku": "XTY-949145", "mfr_sku": "WoodGrain CM147-2800", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756715571", "sku": "XTY-949146-Sample", "dw_sku": "XTY-949146", "mfr_sku": "WoodGrain CM147-2801", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756748339", "sku": "XTY-949147-Sample", "dw_sku": "XTY-949147", "mfr_sku": "WoodGrain CM147-2802", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756781107", "sku": "XTY-949148-Sample", "dw_sku": "XTY-949148", "mfr_sku": "WoodGrain CM147-2803", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756813875", "sku": "XTY-949150-Sample", "dw_sku": "XTY-949150", "mfr_sku": "Spring CM146-2777", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756846643", "sku": "XTY-949151-Sample", "dw_sku": "XTY-949151", "mfr_sku": "Spring CM146-2778", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756879411", "sku": "XTY-949152-Sample", "dw_sku": "XTY-949152", "mfr_sku": "Spring CM146-2779", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756912179", "sku": "XTY-949153-Sample", "dw_sku": "XTY-949153", "mfr_sku": "Spring CM146-2780", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756944947", "sku": "XTY-949154-Sample", "dw_sku": "XTY-949154", "mfr_sku": "Spring CM146-2781", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936756977715", "sku": "XTY-949155-Sample", "dw_sku": "XTY-949155", "mfr_sku": "Spring CM146-2782", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757010483", "sku": "XTY-949156-Sample", "dw_sku": "XTY-949156", "mfr_sku": "Spring CM146-2783", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757043251", "sku": "XTY-949157-Sample", "dw_sku": "XTY-949157", "mfr_sku": "Spring CM146-2784", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757076019", "sku": "XTY-949158-Sample", "dw_sku": "XTY-949158", "mfr_sku": "Spring CM146-2785", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757108787", "sku": "XTY-949159-Sample", "dw_sku": "XTY-949159", "mfr_sku": "Spring CM146-2786", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757141555", "sku": "XTY-949160-Sample", "dw_sku": "XTY-949160", "mfr_sku": "Spring CM146-2787", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757174323", "sku": "XTY-949161-Sample", "dw_sku": "XTY-949161", "mfr_sku": "Spring CM146-2788", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757207091", "sku": "XTY-949162-Sample", "dw_sku": "XTY-949162", "mfr_sku": "Spring CM146-2789", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757239859", "sku": "XTY-949164-Sample", "dw_sku": "XTY-949164", "mfr_sku": "DEHESA CM145-2764", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757272627", "sku": "XTY-949165-Sample", "dw_sku": "XTY-949165", "mfr_sku": "DEHESA CM145-2765", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757305395", "sku": "XTY-949166-Sample", "dw_sku": "XTY-949166", "mfr_sku": "DEHESA CM145-2766", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757370931", "sku": "XTY-949167-Sample", "dw_sku": "XTY-949167", "mfr_sku": "DEHESA CM145-2767", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757403699", "sku": "XTY-949168-Sample", "dw_sku": "XTY-949168", "mfr_sku": "DEHESA CM145-2768", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757469235", "sku": "XTY-949169-Sample", "dw_sku": "XTY-949169", "mfr_sku": "DEHESA CM145-2769", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757502003", "sku": "XTY-949170-Sample", "dw_sku": "XTY-949170", "mfr_sku": "DEHESA CM145-2770", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757534771", "sku": "XTY-949171-Sample", "dw_sku": "XTY-949171", "mfr_sku": "DEHESA CM145-2771", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757567539", "sku": "XTY-949172-Sample", "dw_sku": "XTY-949172", "mfr_sku": "DEHESA CM145-2772", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757600307", "sku": "XTY-949173-Sample", "dw_sku": "XTY-949173", "mfr_sku": "DEHESA CM145-2773", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757633075", "sku": "XTY-949174-Sample", "dw_sku": "XTY-949174", "mfr_sku": "DEHESA CM145-2774", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757665843", "sku": "XTY-949175-Sample", "dw_sku": "XTY-949175", "mfr_sku": "DEHESA CM145-2775", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757698611", "sku": "XTY-949176-Sample", "dw_sku": "XTY-949176", "mfr_sku": "DEHESA CM145-2776", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757731379", "sku": "XTY-949178-Sample", "dw_sku": "XTY-949178", "mfr_sku": "Discus CM144-2751", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757796915", "sku": "XTY-949179-Sample", "dw_sku": "XTY-949179", "mfr_sku": "Discus CM144-2752", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757829683", "sku": "XTY-949180-Sample", "dw_sku": "XTY-949180", "mfr_sku": "Discus CM144-2753", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757862451", "sku": "XTY-949181-Sample", "dw_sku": "XTY-949181", "mfr_sku": "Discus CM144-2754", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757927987", "sku": "XTY-949182-Sample", "dw_sku": "XTY-949182", "mfr_sku": "Discus CM144-2755", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757960755", "sku": "XTY-949183-Sample", "dw_sku": "XTY-949183", "mfr_sku": "Discus CM144-2756", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936757993523", "sku": "XTY-949184-Sample", "dw_sku": "XTY-949184", "mfr_sku": "Discus CM144-2757", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758026291", "sku": "XTY-949185-Sample", "dw_sku": "XTY-949185", "mfr_sku": "Discus CM144-2758", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758059059", "sku": "XTY-949186-Sample", "dw_sku": "XTY-949186", "mfr_sku": "Discus CM144-2759", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758091827", "sku": "XTY-949187-Sample", "dw_sku": "XTY-949187", "mfr_sku": "Discus CM144-2760", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758124595", "sku": "XTY-949188-Sample", "dw_sku": "XTY-949188", "mfr_sku": "Discus CM144-2761", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758157363", "sku": "XTY-949189-Sample", "dw_sku": "XTY-949189", "mfr_sku": "Discus CM144-2762", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758190131", "sku": "XTY-949190-Sample", "dw_sku": "XTY-949190", "mfr_sku": "Discus CM144-2763", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758222899", "sku": "XTY-949192-Sample", "dw_sku": "XTY-949192", "mfr_sku": "Leopard CM143-2744", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758255667", "sku": "XTY-949193-Sample", "dw_sku": "XTY-949193", "mfr_sku": "Leopard CM143-2745", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758288435", "sku": "XTY-949194-Sample", "dw_sku": "XTY-949194", "mfr_sku": "Leopard CM143-2746", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758321203", "sku": "XTY-949195-Sample", "dw_sku": "XTY-949195", "mfr_sku": "Leopard CM143-2747", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758353971", "sku": "XTY-949196-Sample", "dw_sku": "XTY-949196", "mfr_sku": "Leopard CM143-2748", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758386739", "sku": "XTY-949197-Sample", "dw_sku": "XTY-949197", "mfr_sku": "Leopard CM143-2749", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758419507", "sku": "XTY-949198-Sample", "dw_sku": "XTY-949198", "mfr_sku": "Leopard CM143-2750", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758452275", "sku": "XTY-949200-Sample", "dw_sku": "XTY-949200", "mfr_sku": "Snake CM142-2737", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758485043", "sku": "XTY-949201-Sample", "dw_sku": "XTY-949201", "mfr_sku": "CM142-2738", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758517811", "sku": "XTY-949202-Sample", "dw_sku": "XTY-949202", "mfr_sku": "Snake CM142-2739", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758550579", "sku": "XTY-949203-Sample", "dw_sku": "XTY-949203", "mfr_sku": "Snake CM142-2740", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758583347", "sku": "XTY-949204-Sample", "dw_sku": "XTY-949204", "mfr_sku": "Snake CM142-2741", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758681651", "sku": "XTY-949205-Sample", "dw_sku": "XTY-949205", "mfr_sku": "Snake CM142-2742", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758747187", "sku": "XTY-949206-Sample", "dw_sku": "XTY-949206", "mfr_sku": "Snake CM142-2743", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758779955", "sku": "XTY-949208-Sample", "dw_sku": "XTY-949208", "mfr_sku": "Python CM141-2728", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758812723", "sku": "XTY-949209-Sample", "dw_sku": "XTY-949209", "mfr_sku": "Python CM141-2729", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758845491", "sku": "XTY-949210-Sample", "dw_sku": "XTY-949210", "mfr_sku": "Python CM141-2730", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758878259", "sku": "XTY-949211-Sample", "dw_sku": "XTY-949211", "mfr_sku": "Python CM141-2731", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758911027", "sku": "XTY-949212-Sample", "dw_sku": "XTY-949212", "mfr_sku": "Python CM141-2732", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758943795", "sku": "XTY-949213-Sample", "dw_sku": "XTY-949213", "mfr_sku": "Python CM141-2733", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936758976563", "sku": "XTY-949214-Sample", "dw_sku": "XTY-949214", "mfr_sku": "Python CM141-2734", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759009331", "sku": "XTY-949215-Sample", "dw_sku": "XTY-949215", "mfr_sku": "Python CM141-2735", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759042099", "sku": "XTY-949216-Sample", "dw_sku": "XTY-949216", "mfr_sku": "Python CM141-2736", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759074867", "sku": "XTY-949218-Sample", "dw_sku": "XTY-949218", "mfr_sku": "Skin CM140-2719", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759107635", "sku": "XTY-949219-Sample", "dw_sku": "XTY-949219", "mfr_sku": "Skin CM140-2720", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759140403", "sku": "XTY-949220-Sample", "dw_sku": "XTY-949220", "mfr_sku": "Skin CM140-2721", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759173171", "sku": "XTY-949221-Sample", "dw_sku": "XTY-949221", "mfr_sku": "Skin CM140-2722", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759205939", "sku": "XTY-949222-Sample", "dw_sku": "XTY-949222", "mfr_sku": "Skin CM140-2723", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759238707", "sku": "XTY-949223-Sample", "dw_sku": "XTY-949223", "mfr_sku": "Skin CM140-2724", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759271475", "sku": "XTY-949224-Sample", "dw_sku": "XTY-949224", "mfr_sku": "Skin CM140-2725", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759304243", "sku": "XTY-949225-Sample", "dw_sku": "XTY-949225", "mfr_sku": "Skin CM140-2726", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759337011", "sku": "XTY-949226-Sample", "dw_sku": "XTY-949226", "mfr_sku": "Skin CM140-2727", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759369779", "sku": "XTY-949228-Sample", "dw_sku": "XTY-949228", "mfr_sku": "Densho CM139-2700", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759402547", "sku": "XTY-949229-Sample", "dw_sku": "XTY-949229", "mfr_sku": "Densho CM139-2701", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759435315", "sku": "XTY-949230-Sample", "dw_sku": "XTY-949230", "mfr_sku": "Densho CM139-2702", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759468083", "sku": "XTY-949231-Sample", "dw_sku": "XTY-949231", "mfr_sku": "Densho CM139-2703", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759500851", "sku": "XTY-949232-Sample", "dw_sku": "XTY-949232", "mfr_sku": "Densho CM139-2704", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759533619", "sku": "XTY-949233-Sample", "dw_sku": "XTY-949233", "mfr_sku": "Densho CM139-2705", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759566387", "sku": "XTY-949234-Sample", "dw_sku": "XTY-949234", "mfr_sku": "Densho CM139-2706", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759599155", "sku": "XTY-949235-Sample", "dw_sku": "XTY-949235", "mfr_sku": "Densho CM139-2707", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759631923", "sku": "XTY-949236-Sample", "dw_sku": "XTY-949236", "mfr_sku": "Densho CM139-2708", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759664691", "sku": "XTY-949237-Sample", "dw_sku": "XTY-949237", "mfr_sku": "Densho CM139-2709", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759697459", "sku": "XTY-949238-Sample", "dw_sku": "XTY-949238", "mfr_sku": "Densho CM139-2710", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759730227", "sku": "XTY-949239-Sample", "dw_sku": "XTY-949239", "mfr_sku": "Densho CM139-2711", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759762995", "sku": "XTY-949240-Sample", "dw_sku": "XTY-949240", "mfr_sku": "Densho CM139-2712", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759795763", "sku": "XTY-949241-Sample", "dw_sku": "XTY-949241", "mfr_sku": "Densho CM139-2713", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759828531", "sku": "XTY-949242-Sample", "dw_sku": "XTY-949242", "mfr_sku": "Densho CM139-2714", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759894067", "sku": "XTY-949243-Sample", "dw_sku": "XTY-949243", "mfr_sku": "Densho CM139-2715", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759926835", "sku": "XTY-949244-Sample", "dw_sku": "XTY-949244", "mfr_sku": "Densho CM139-2716", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759959603", "sku": "XTY-949245-Sample", "dw_sku": "XTY-949245", "mfr_sku": "Densho CM139-2717", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936759992371", "sku": "XTY-949246-Sample", "dw_sku": "XTY-949246", "mfr_sku": "Densho CM139-2718", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760025139", "sku": "XTY-949248-Sample", "dw_sku": "XTY-949248", "mfr_sku": "Metalia CM138-2681", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760057907", "sku": "XTY-949249-Sample", "dw_sku": "XTY-949249", "mfr_sku": "Metalia CM138-2682", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760090675", "sku": "XTY-949250-Sample", "dw_sku": "XTY-949250", "mfr_sku": "Metalia CM138-2683", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760123443", "sku": "XTY-949251-Sample", "dw_sku": "XTY-949251", "mfr_sku": "Metalia CM138-2684", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760156211", "sku": "XTY-949252-Sample", "dw_sku": "XTY-949252", "mfr_sku": "Metalia CM138-2685", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760221747", "sku": "XTY-949253-Sample", "dw_sku": "XTY-949253", "mfr_sku": "Metalia CM138-2686", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760254515", "sku": "XTY-949254-Sample", "dw_sku": "XTY-949254", "mfr_sku": "Metalia CM138-2687", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760287283", "sku": "XTY-949255-Sample", "dw_sku": "XTY-949255", "mfr_sku": "Metalia CM138-2688", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760320051", "sku": "XTY-949256-Sample", "dw_sku": "XTY-949256", "mfr_sku": "Metalia CM138-2689", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760352819", "sku": "XTY-949257-Sample", "dw_sku": "XTY-949257", "mfr_sku": "Metalia CM138-2690", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760385587", "sku": "XTY-949258-Sample", "dw_sku": "XTY-949258", "mfr_sku": "Metalia CM138-2691", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760418355", "sku": "XTY-949259-Sample", "dw_sku": "XTY-949259", "mfr_sku": "Metalia CM138-2692", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760451123", "sku": "XTY-949260-Sample", "dw_sku": "XTY-949260", "mfr_sku": "Metalia CM138-2693", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760483891", "sku": "XTY-949261-Sample", "dw_sku": "XTY-949261", "mfr_sku": "Metalia CM138-2694", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760516659", "sku": "XTY-949262-Sample", "dw_sku": "XTY-949262", "mfr_sku": "Metalia CM138-2695", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760582195", "sku": "XTY-949263-Sample", "dw_sku": "XTY-949263", "mfr_sku": "Metalia CM138-2696", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760614963", "sku": "XTY-949264-Sample", "dw_sku": "XTY-949264", "mfr_sku": "Metalia CM138-2697", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760647731", "sku": "XTY-949265-Sample", "dw_sku": "XTY-949265", "mfr_sku": "Metalia CM138-2698", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760680499", "sku": "XTY-949266-Sample", "dw_sku": "XTY-949266", "mfr_sku": "Metalia CM138-2699", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760713267", "sku": "XTY-949268-Sample", "dw_sku": "XTY-949268", "mfr_sku": "Florence CM137-2662", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760746035", "sku": "XTY-949269-Sample", "dw_sku": "XTY-949269", "mfr_sku": "Florence CM137-2663", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760778803", "sku": "XTY-949270-Sample", "dw_sku": "XTY-949270", "mfr_sku": "Florence CM137-2664", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760811571", "sku": "XTY-949271-Sample", "dw_sku": "XTY-949271", "mfr_sku": "Florence CM137-2665", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760844339", "sku": "XTY-949272-Sample", "dw_sku": "XTY-949272", "mfr_sku": "Florence CM137-2666", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760877107", "sku": "XTY-949273-Sample", "dw_sku": "XTY-949273", "mfr_sku": "Florence CM137-2667", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760909875", "sku": "XTY-949274-Sample", "dw_sku": "XTY-949274", "mfr_sku": "Florence CM137-2668", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760942643", "sku": "XTY-949275-Sample", "dw_sku": "XTY-949275", "mfr_sku": "Florence CM137-2669", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936760975411", "sku": "XTY-949276-Sample", "dw_sku": "XTY-949276", "mfr_sku": "Florence CM137-2670", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761008179", "sku": "XTY-949277-Sample", "dw_sku": "XTY-949277", "mfr_sku": "Florence CM137-2671", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761040947", "sku": "XTY-949278-Sample", "dw_sku": "XTY-949278", "mfr_sku": "Florence CM137-2672", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761073715", "sku": "XTY-949279-Sample", "dw_sku": "XTY-949279", "mfr_sku": "Florence CM137-2673", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761106483", "sku": "XTY-949280-Sample", "dw_sku": "XTY-949280", "mfr_sku": "Florence CM137-2674", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761139251", "sku": "XTY-949281-Sample", "dw_sku": "XTY-949281", "mfr_sku": "Florence CM137-2675", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761172019", "sku": "XTY-949282-Sample", "dw_sku": "XTY-949282", "mfr_sku": "Florence CM137-2676", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761204787", "sku": "XTY-949283-Sample", "dw_sku": "XTY-949283", "mfr_sku": "Florence CM137-2677", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761237555", "sku": "XTY-949284-Sample", "dw_sku": "XTY-949284", "mfr_sku": "Florence CM137-2678", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761270323", "sku": "XTY-949285-Sample", "dw_sku": "XTY-949285", "mfr_sku": "Florence CM137-2679", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761303091", "sku": "XTY-949286-Sample", "dw_sku": "XTY-949286", "mfr_sku": "Florence CM137-2680", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761335859", "sku": "XTY-949288-Sample", "dw_sku": "XTY-949288", "mfr_sku": "Cordoba CM135-2627", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761368627", "sku": "XTY-949289-Sample", "dw_sku": "XTY-949289", "mfr_sku": "Cordoba CM135-2628", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761401395", "sku": "XTY-949290-Sample", "dw_sku": "XTY-949290", "mfr_sku": "Cordoba CM135-2629", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761434163", "sku": "XTY-949291-Sample", "dw_sku": "XTY-949291", "mfr_sku": "Cordoba CM135-2630", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761466931", "sku": "XTY-949292-Sample", "dw_sku": "XTY-949292", "mfr_sku": "Cordoba CM135-2631", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761499699", "sku": "XTY-949293-Sample", "dw_sku": "XTY-949293", "mfr_sku": "Cordoba CM135-2632", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761532467", "sku": "XTY-949294-Sample", "dw_sku": "XTY-949294", "mfr_sku": "Cordoba CM135-2633", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761565235", "sku": "XTY-949295-Sample", "dw_sku": "XTY-949295", "mfr_sku": "Cordoba CM135-2634", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761598003", "sku": "XTY-949296-Sample", "dw_sku": "XTY-949296", "mfr_sku": "Cordoba CM135-2635", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761663539", "sku": "XTY-949297-Sample", "dw_sku": "XTY-949297", "mfr_sku": "Cordoba CM135-2636", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761696307", "sku": "XTY-949298-Sample", "dw_sku": "XTY-949298", "mfr_sku": "Cordoba CM135-2637", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761729075", "sku": "XTY-949299-Sample", "dw_sku": "XTY-949299", "mfr_sku": "Cordoba CM135-2638", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761761843", "sku": "XTY-949300-Sample", "dw_sku": "XTY-949300", "mfr_sku": "Cordoba CM135-2639", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761794611", "sku": "XTY-949301-Sample", "dw_sku": "XTY-949301", "mfr_sku": "Cordoba CM135-2640", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761827379", "sku": "XTY-949302-Sample", "dw_sku": "XTY-949302", "mfr_sku": "Cordoba CM135-2641", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761892915", "sku": "XTY-949303-Sample", "dw_sku": "XTY-949303", "mfr_sku": "Cordoba CM135-2642", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761925683", "sku": "XTY-949305-Sample", "dw_sku": "XTY-949305", "mfr_sku": "Cadiz CM136-2643", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761958451", "sku": "XTY-949306-Sample", "dw_sku": "XTY-949306", "mfr_sku": "Cadiz CM136-2644", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936761991219", "sku": "XTY-949307-Sample", "dw_sku": "XTY-949307", "mfr_sku": "Cadiz CM136-2645", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762056755", "sku": "XTY-949308-Sample", "dw_sku": "XTY-949308", "mfr_sku": "Cadiz CM136-2646", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762089523", "sku": "XTY-949309-Sample", "dw_sku": "XTY-949309", "mfr_sku": "Cadiz CM136-2647", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762122291", "sku": "XTY-949310-Sample", "dw_sku": "XTY-949310", "mfr_sku": "Cadiz CM136-2648", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762155059", "sku": "XTY-949311-Sample", "dw_sku": "XTY-949311", "mfr_sku": "Cadiz CM136-2649", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762187827", "sku": "XTY-949312-Sample", "dw_sku": "XTY-949312", "mfr_sku": "Cadiz CM136-2650", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762220595", "sku": "XTY-949313-Sample", "dw_sku": "XTY-949313", "mfr_sku": "Cadiz CM136-2651", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762253363", "sku": "XTY-949314-Sample", "dw_sku": "XTY-949314", "mfr_sku": "Cadiz CM136-2652", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762286131", "sku": "XTY-949315-Sample", "dw_sku": "XTY-949315", "mfr_sku": "Cadiz CM136-2653", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762318899", "sku": "XTY-949316-Sample", "dw_sku": "XTY-949316", "mfr_sku": "Cadiz CM136-2654", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762384435", "sku": "XTY-949317-Sample", "dw_sku": "XTY-949317", "mfr_sku": "Cadiz CM136-2655", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762417203", "sku": "XTY-949318-Sample", "dw_sku": "XTY-949318", "mfr_sku": "Cadiz CM136-2656", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762449971", "sku": "XTY-949319-Sample", "dw_sku": "XTY-949319", "mfr_sku": "Cadiz CM136-2657", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762482739", "sku": "XTY-949320-Sample", "dw_sku": "XTY-949320", "mfr_sku": "Cadiz CM136-2658", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762515507", "sku": "XTY-949321-Sample", "dw_sku": "XTY-949321", "mfr_sku": "Cadiz CM136-2659", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762548275", "sku": "XTY-949322-Sample", "dw_sku": "XTY-949322", "mfr_sku": "Cadiz CM136-2660", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762581043", "sku": "XTY-949323-Sample", "dw_sku": "XTY-949323", "mfr_sku": "Cadiz CM136-2661", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762613811", "sku": "XTY-949325-Sample", "dw_sku": "XTY-949325", "mfr_sku": "CM134-2617", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762646579", "sku": "XTY-949326-Sample", "dw_sku": "XTY-949326", "mfr_sku": "CM134-2618", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762679347", "sku": "XTY-949327-Sample", "dw_sku": "XTY-949327", "mfr_sku": "CM134-2619", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762712115", "sku": "XTY-949328-Sample", "dw_sku": "XTY-949328", "mfr_sku": "CM134-2620", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762744883", "sku": "XTY-949329-Sample", "dw_sku": "XTY-949329", "mfr_sku": "CM134-2621", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762777651", "sku": "XTY-949330-Sample", "dw_sku": "XTY-949330", "mfr_sku": "CM134-2622", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762810419", "sku": "XTY-949331-Sample", "dw_sku": "XTY-949331", "mfr_sku": "CM134-2623", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762875955", "sku": "XTY-949332-Sample", "dw_sku": "XTY-949332", "mfr_sku": "CM134-2624", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762908723", "sku": "XTY-949333-Sample", "dw_sku": "XTY-949333", "mfr_sku": "CM134-2625", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762941491", "sku": "XTY-949334-Sample", "dw_sku": "XTY-949334", "mfr_sku": "CM134-2626", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936762974259", "sku": "XTY-949336-Sample", "dw_sku": "XTY-949336", "mfr_sku": "CM133-2599", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763007027", "sku": "XTY-949337-Sample", "dw_sku": "XTY-949337", "mfr_sku": "CM133-2600", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763039795", "sku": "XTY-949338-Sample", "dw_sku": "XTY-949338", "mfr_sku": "CM133-2601", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763072563", "sku": "XTY-949339-Sample", "dw_sku": "XTY-949339", "mfr_sku": "CM133-2602", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763105331", "sku": "XTY-949340-Sample", "dw_sku": "XTY-949340", "mfr_sku": "CM133-2603", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763170867", "sku": "XTY-949341-Sample", "dw_sku": "XTY-949341", "mfr_sku": "CM133-2604", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763203635", "sku": "XTY-949342-Sample", "dw_sku": "XTY-949342", "mfr_sku": "CM133-2605", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763236403", "sku": "XTY-949343-Sample", "dw_sku": "XTY-949343", "mfr_sku": "CM133-2606", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763269171", "sku": "XTY-949344-Sample", "dw_sku": "XTY-949344", "mfr_sku": "CM133-2607", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763301939", "sku": "XTY-949345-Sample", "dw_sku": "XTY-949345", "mfr_sku": "CM133-2608", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763334707", "sku": "XTY-949346-Sample", "dw_sku": "XTY-949346", "mfr_sku": "CM133-2609", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763367475", "sku": "XTY-949347-Sample", "dw_sku": "XTY-949347", "mfr_sku": "CM133-2610", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763400243", "sku": "XTY-949348-Sample", "dw_sku": "XTY-949348", "mfr_sku": "CM133-2611", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763498547", "sku": "XTY-949349-Sample", "dw_sku": "XTY-949349", "mfr_sku": "CM133-2612", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763531315", "sku": "XTY-949350-Sample", "dw_sku": "XTY-949350", "mfr_sku": "CM133-2613", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763564083", "sku": "XTY-949351-Sample", "dw_sku": "XTY-949351", "mfr_sku": "CM133-2614", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763596851", "sku": "XTY-949352-Sample", "dw_sku": "XTY-949352", "mfr_sku": "CM133-2615", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763629619", "sku": "XTY-949353-Sample", "dw_sku": "XTY-949353", "mfr_sku": "CM133-2616", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763662387", "sku": "XTY-949355-Sample", "dw_sku": "XTY-949355", "mfr_sku": "Aperature CM132-2589", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763695155", "sku": "XTY-949356-Sample", "dw_sku": "XTY-949356", "mfr_sku": "Aperature CM132-2590", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763760691", "sku": "XTY-949357-Sample", "dw_sku": "XTY-949357", "mfr_sku": "Aperature CM132-2591", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763793459", "sku": "XTY-949358-Sample", "dw_sku": "XTY-949358", "mfr_sku": "Aperature CM132-2592", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763826227", "sku": "XTY-949359-Sample", "dw_sku": "XTY-949359", "mfr_sku": "Aperature CM132-2593", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763858995", "sku": "XTY-949360-Sample", "dw_sku": "XTY-949360", "mfr_sku": "Aperature CM132-2594", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763891763", "sku": "XTY-949361-Sample", "dw_sku": "XTY-949361", "mfr_sku": "Aperature CM132-2595", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763924531", "sku": "XTY-949362-Sample", "dw_sku": "XTY-949362", "mfr_sku": "Aperature CM132-2596", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763957299", "sku": "XTY-949363-Sample", "dw_sku": "XTY-949363", "mfr_sku": "Aperature CM132-2597", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936763990067", "sku": "XTY-949364-Sample", "dw_sku": "XTY-949364", "mfr_sku": "Aperature CM132-2598", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764022835", "sku": "XTY-949366-Sample", "dw_sku": "XTY-949366", "mfr_sku": "Cannes CM131-2574", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764055603", "sku": "XTY-949367-Sample", "dw_sku": "XTY-949367", "mfr_sku": "Cannes CM131-2575", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764088371", "sku": "XTY-949368-Sample", "dw_sku": "XTY-949368", "mfr_sku": "Cannes CM131-2576", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764121139", "sku": "XTY-949369-Sample", "dw_sku": "XTY-949369", "mfr_sku": "Cannes CM131-2577", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764153907", "sku": "XTY-949370-Sample", "dw_sku": "XTY-949370", "mfr_sku": "Cannes CM131-2578", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764186675", "sku": "XTY-949371-Sample", "dw_sku": "XTY-949371", "mfr_sku": "Cannes CM131-2579", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764219443", "sku": "XTY-949372-Sample", "dw_sku": "XTY-949372", "mfr_sku": "Cannes CM131-2580", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764252211", "sku": "XTY-949373-Sample", "dw_sku": "XTY-949373", "mfr_sku": "Cannes CM131-2581", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764317747", "sku": "XTY-949374-Sample", "dw_sku": "XTY-949374", "mfr_sku": "Cannes CM131-2582", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764350515", "sku": "XTY-949375-Sample", "dw_sku": "XTY-949375", "mfr_sku": "Cannes CM131-2583", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764383283", "sku": "XTY-949376-Sample", "dw_sku": "XTY-949376", "mfr_sku": "Cannes CM131-2584", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764416051", "sku": "XTY-949377-Sample", "dw_sku": "XTY-949377", "mfr_sku": "Cannes CM131-2585", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764448819", "sku": "XTY-949378-Sample", "dw_sku": "XTY-949378", "mfr_sku": "Cannes CM131-2586", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764481587", "sku": "XTY-949379-Sample", "dw_sku": "XTY-949379", "mfr_sku": "Cannes CM131-2587", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764514355", "sku": "XTY-949380-Sample", "dw_sku": "XTY-949380", "mfr_sku": "Cannes CM131-2588", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764547123", "sku": "XTY-949382-Sample", "dw_sku": "XTY-949382", "mfr_sku": "Wanderlust CM130-2562", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764579891", "sku": "XTY-949383-Sample", "dw_sku": "XTY-949383", "mfr_sku": "Wanderlust CM130-2563", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764612659", "sku": "XTY-949384-Sample", "dw_sku": "XTY-949384", "mfr_sku": "Wanderlust CM130-2564", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764710963", "sku": "XTY-949386-Sample", "dw_sku": "XTY-949386", "mfr_sku": "Wanderlust CM130-2565", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764743731", "sku": "XTY-949387-Sample", "dw_sku": "XTY-949387", "mfr_sku": "Wanderlust CM130-2566", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764776499", "sku": "XTY-949388-Sample", "dw_sku": "XTY-949388", "mfr_sku": "Wanderlust CM130-2567", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764809267", "sku": "XTY-949389-Sample", "dw_sku": "XTY-949389", "mfr_sku": "Wanderlust CM130-2568", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764874803", "sku": "XTY-949390-Sample", "dw_sku": "XTY-949390", "mfr_sku": "Wanderlust CM130-2569", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764907571", "sku": "XTY-949391-Sample", "dw_sku": "XTY-949391", "mfr_sku": "Wanderlust CM130-2570", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764940339", "sku": "XTY-949392-Sample", "dw_sku": "XTY-949392", "mfr_sku": "Wanderlust CM130-2571", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936764973107", "sku": "XTY-949393-Sample", "dw_sku": "XTY-949393", "mfr_sku": "Wanderlust CM130-2572", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765005875", "sku": "XTY-949394-Sample", "dw_sku": "XTY-949394", "mfr_sku": "Wanderlust CM130-2573", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765038643", "sku": "XTY-949396-Sample", "dw_sku": "XTY-949396", "mfr_sku": "Chenille CM129-2550", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765071411", "sku": "XTY-949397-Sample", "dw_sku": "XTY-949397", "mfr_sku": "Chenille CM129-2551", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765136947", "sku": "XTY-949398-Sample", "dw_sku": "XTY-949398", "mfr_sku": "Chenille CM129-2552", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765169715", "sku": "XTY-949399-Sample", "dw_sku": "XTY-949399", "mfr_sku": "Chenille CM129-2553", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765202483", "sku": "XTY-949400-Sample", "dw_sku": "XTY-949400", "mfr_sku": "Chenille CM129-2554", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765235251", "sku": "XTY-949401-Sample", "dw_sku": "XTY-949401", "mfr_sku": "Chenille CM129-2555", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765268019", "sku": "XTY-949402-Sample", "dw_sku": "XTY-949402", "mfr_sku": "Chenille CM129-2556", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765300787", "sku": "XTY-949403-Sample", "dw_sku": "XTY-949403", "mfr_sku": "Chenille CM129-2557", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765333555", "sku": "XTY-949404-Sample", "dw_sku": "XTY-949404", "mfr_sku": "Chenille CM129-2558", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765399091", "sku": "XTY-949405-Sample", "dw_sku": "XTY-949405", "mfr_sku": "Chenille CM129-2559", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765431859", "sku": "XTY-949406-Sample", "dw_sku": "XTY-949406", "mfr_sku": "Chenille CM129-2560", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765464627", "sku": "XTY-949407-Sample", "dw_sku": "XTY-949407", "mfr_sku": "Chenille CM129-2561", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765497395", "sku": "XTY-949409-Sample", "dw_sku": "XTY-949409", "mfr_sku": "Sienna CM128-2540", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765530163", "sku": "XTY-949410-Sample", "dw_sku": "XTY-949410", "mfr_sku": "Sienna CM128-2541", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765562931", "sku": "XTY-949411-Sample", "dw_sku": "XTY-949411", "mfr_sku": "Sienna CM128-2542", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765595699", "sku": "XTY-949412-Sample", "dw_sku": "XTY-949412", "mfr_sku": "Sienna CM128-2543", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765628467", "sku": "XTY-949413-Sample", "dw_sku": "XTY-949413", "mfr_sku": "Sienna CM128-2544", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765661235", "sku": "XTY-949414-Sample", "dw_sku": "XTY-949414", "mfr_sku": "Sienna CM128-2545", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765694003", "sku": "XTY-949415-Sample", "dw_sku": "XTY-949415", "mfr_sku": "Sienna CM128-2546", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765726771", "sku": "XTY-949416-Sample", "dw_sku": "XTY-949416", "mfr_sku": "Sienna CM128-2547", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765759539", "sku": "XTY-949417-Sample", "dw_sku": "XTY-949417", "mfr_sku": "Sienna CM128-2548", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765792307", "sku": "XTY-949418-Sample", "dw_sku": "XTY-949418", "mfr_sku": "Sienna CM128-2549", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765825075", "sku": "XTY-949420-Sample", "dw_sku": "XTY-949420", "mfr_sku": "Koto CM127-2528", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765890611", "sku": "XTY-949421-Sample", "dw_sku": "XTY-949421", "mfr_sku": "Koto CM127-2529", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765923379", "sku": "XTY-949422-Sample", "dw_sku": "XTY-949422", "mfr_sku": "Koto CM127-2530", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765956147", "sku": "XTY-949423-Sample", "dw_sku": "XTY-949423", "mfr_sku": "Koto CM127-2531", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936765988915", "sku": "XTY-949424-Sample", "dw_sku": "XTY-949424", "mfr_sku": "Koto CM127-2532", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766021683", "sku": "XTY-949425-Sample", "dw_sku": "XTY-949425", "mfr_sku": "Koto CM127-2533", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766087219", "sku": "XTY-949426-Sample", "dw_sku": "XTY-949426", "mfr_sku": "Koto CM127-2534", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766119987", "sku": "XTY-949427-Sample", "dw_sku": "XTY-949427", "mfr_sku": "Koto CM127-2535", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766152755", "sku": "XTY-949428-Sample", "dw_sku": "XTY-949428", "mfr_sku": "Koto CM127-2536", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766218291", "sku": "XTY-949429-Sample", "dw_sku": "XTY-949429", "mfr_sku": "Koto CM127-2537", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766283827", "sku": "XTY-949430-Sample", "dw_sku": "XTY-949430", "mfr_sku": "Koto CM127-2538", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766316595", "sku": "XTY-949431-Sample", "dw_sku": "XTY-949431", "mfr_sku": "Koto CM127-2539", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766349363", "sku": "XTY-949433-Sample", "dw_sku": "XTY-949433", "mfr_sku": "Fiji CM126-2515", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766382131", "sku": "XTY-949434-Sample", "dw_sku": "XTY-949434", "mfr_sku": "Fiji CM126-2516", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766447667", "sku": "XTY-949435-Sample", "dw_sku": "XTY-949435", "mfr_sku": "Fiji CM126-2517", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766480435", "sku": "XTY-949436-Sample", "dw_sku": "XTY-949436", "mfr_sku": "Fiji CM126-2518", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766545971", "sku": "XTY-949438-Sample", "dw_sku": "XTY-949438", "mfr_sku": "Fiji CM126-2520", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766578739", "sku": "XTY-949439-Sample", "dw_sku": "XTY-949439", "mfr_sku": "Fiji CM126-2521", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766611507", "sku": "XTY-949440-Sample", "dw_sku": "XTY-949440", "mfr_sku": "Fiji CM126-2522", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766644275", "sku": "XTY-949441-Sample", "dw_sku": "XTY-949441", "mfr_sku": "Fiji CM126-2523", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766677043", "sku": "XTY-949442-Sample", "dw_sku": "XTY-949442", "mfr_sku": "Fiji CM126-2524", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766709811", "sku": "XTY-949443-Sample", "dw_sku": "XTY-949443", "mfr_sku": "Fiji CM126-2525", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766742579", "sku": "XTY-949444-Sample", "dw_sku": "XTY-949444", "mfr_sku": "Fiji CM126-2526", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766775347", "sku": "XTY-949445-Sample", "dw_sku": "XTY-949445", "mfr_sku": "Fiji CM126-2527", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766808115", "sku": "XTY-949447-Sample", "dw_sku": "XTY-949447", "mfr_sku": "CM125-2500", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766840883", "sku": "XTY-949448-Sample", "dw_sku": "XTY-949448", "mfr_sku": "CM125-2501", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766873651", "sku": "XTY-949449-Sample", "dw_sku": "XTY-949449", "mfr_sku": "CM125-2502", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766906419", "sku": "XTY-949450-Sample", "dw_sku": "XTY-949450", "mfr_sku": "CM125-2503", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766939187", "sku": "XTY-949451-Sample", "dw_sku": "XTY-949451", "mfr_sku": "CM125-2504", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936766971955", "sku": "XTY-949452-Sample", "dw_sku": "XTY-949452", "mfr_sku": "CM125-2505", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767004723", "sku": "XTY-949453-Sample", "dw_sku": "XTY-949453", "mfr_sku": "CM125-2506", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767037491", "sku": "XTY-949454-Sample", "dw_sku": "XTY-949454", "mfr_sku": "CM125-2507", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767070259", "sku": "XTY-949455-Sample", "dw_sku": "XTY-949455", "mfr_sku": "CM125-2508", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767103027", "sku": "XTY-949456-Sample", "dw_sku": "XTY-949456", "mfr_sku": "CM125-2509", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767135795", "sku": "XTY-949457-Sample", "dw_sku": "XTY-949457", "mfr_sku": "CM125-2510", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767168563", "sku": "XTY-949458-Sample", "dw_sku": "XTY-949458", "mfr_sku": "CM125-2511", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767201331", "sku": "XTY-949459-Sample", "dw_sku": "XTY-949459", "mfr_sku": "CM125-2512", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767266867", "sku": "XTY-949460-Sample", "dw_sku": "XTY-949460", "mfr_sku": "CM125-2513", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767299635", "sku": "XTY-949461-Sample", "dw_sku": "XTY-949461", "mfr_sku": "CM125-2514", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767332403", "sku": "XTY-949463-Sample", "dw_sku": "XTY-949463", "mfr_sku": "Louver CM124-2481", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767365171", "sku": "XTY-949464-Sample", "dw_sku": "XTY-949464", "mfr_sku": "Louver CM124-2482", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767430707", "sku": "XTY-949465-Sample", "dw_sku": "XTY-949465", "mfr_sku": "Louver CM124-2483", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767463475", "sku": "XTY-949466-Sample", "dw_sku": "XTY-949466", "mfr_sku": "Louver CM124-2484", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767496243", "sku": "XTY-949467-Sample", "dw_sku": "XTY-949467", "mfr_sku": "Louver CM124-2485", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767561779", "sku": "XTY-949468-Sample", "dw_sku": "XTY-949468", "mfr_sku": "Louver CM124-2486", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767627315", "sku": "XTY-949469-Sample", "dw_sku": "XTY-949469", "mfr_sku": "Louver CM124-2487", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767660083", "sku": "XTY-949470-Sample", "dw_sku": "XTY-949470", "mfr_sku": "Louver CM124-2488", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767692851", "sku": "XTY-949471-Sample", "dw_sku": "XTY-949471", "mfr_sku": "Louver CM124-2489", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767758387", "sku": "XTY-949472-Sample", "dw_sku": "XTY-949472", "mfr_sku": "Louver CM124-2490", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767791155", "sku": "XTY-949473-Sample", "dw_sku": "XTY-949473", "mfr_sku": "Louver CM124-2491", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767823923", "sku": "XTY-949474-Sample", "dw_sku": "XTY-949474", "mfr_sku": "Louver CM124-2492", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767856691", "sku": "XTY-949475-Sample", "dw_sku": "XTY-949475", "mfr_sku": "Louver CM124-2493", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767889459", "sku": "XTY-949476-Sample", "dw_sku": "XTY-949476", "mfr_sku": "Louver CM124-2494", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767954995", "sku": "XTY-949477-Sample", "dw_sku": "XTY-949477", "mfr_sku": "Louver CM124-2495", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936767987763", "sku": "XTY-949478-Sample", "dw_sku": "XTY-949478", "mfr_sku": "Louver CM124-2496", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768020531", "sku": "XTY-949479-Sample", "dw_sku": "XTY-949479", "mfr_sku": "Louver CM124-2497", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768053299", "sku": "XTY-949480-Sample", "dw_sku": "XTY-949480", "mfr_sku": "Louver CM124-2498", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768118835", "sku": "XTY-949481-Sample", "dw_sku": "XTY-949481", "mfr_sku": "Louver CM124-2499", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768151603", "sku": "XTY-949483-Sample", "dw_sku": "XTY-949483", "mfr_sku": "Dubai CM123-2464", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768184371", "sku": "XTY-949484-Sample", "dw_sku": "XTY-949484", "mfr_sku": "Dubai CM123-2465", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768217139", "sku": "XTY-949485-Sample", "dw_sku": "XTY-949485", "mfr_sku": "Dubai CM123-2466", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768249907", "sku": "XTY-949486-Sample", "dw_sku": "XTY-949486", "mfr_sku": "Dubai CM123-2467", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768282675", "sku": "XTY-949487-Sample", "dw_sku": "XTY-949487", "mfr_sku": "Dubai CM123-2468", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768315443", "sku": "XTY-949488-Sample", "dw_sku": "XTY-949488", "mfr_sku": "Dubai CM123-2469", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768348211", "sku": "XTY-949489-Sample", "dw_sku": "XTY-949489", "mfr_sku": "Dubai CM123-2470", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768380979", "sku": "XTY-949490-Sample", "dw_sku": "XTY-949490", "mfr_sku": "Dubai CM123-2471", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768413747", "sku": "XTY-949491-Sample", "dw_sku": "XTY-949491", "mfr_sku": "Dubai CM123-2472", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768446515", "sku": "XTY-949492-Sample", "dw_sku": "XTY-949492", "mfr_sku": "Dubai CM123-2473", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768512051", "sku": "XTY-949493-Sample", "dw_sku": "XTY-949493", "mfr_sku": "Dubai CM123-2474", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768544819", "sku": "XTY-949494-Sample", "dw_sku": "XTY-949494", "mfr_sku": "Dubai CM123-2475", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768577587", "sku": "XTY-949495-Sample", "dw_sku": "XTY-949495", "mfr_sku": "Dubai CM123-2476", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768675891", "sku": "XTY-949496-Sample", "dw_sku": "XTY-949496", "mfr_sku": "Dubai CM123-2477", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768708659", "sku": "XTY-949497-Sample", "dw_sku": "XTY-949497", "mfr_sku": "Dubai CM123-2478", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768741427", "sku": "XTY-949498-Sample", "dw_sku": "XTY-949498", "mfr_sku": "Dubai CM123-2479", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768774195", "sku": "XTY-949499-Sample", "dw_sku": "XTY-949499", "mfr_sku": "Dubai CM123-2480", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768839731", "sku": "XTY-949501-Sample", "dw_sku": "XTY-949501", "mfr_sku": "Aja CM122-2448", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768872499", "sku": "XTY-949502-Sample", "dw_sku": "XTY-949502", "mfr_sku": "Aja CM122-2449", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768905267", "sku": "XTY-949503-Sample", "dw_sku": "XTY-949503", "mfr_sku": "Aja CM122-2450", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936768970803", "sku": "XTY-949504-Sample", "dw_sku": "XTY-949504", "mfr_sku": "Aja CM122-2451", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769003571", "sku": "XTY-949505-Sample", "dw_sku": "XTY-949505", "mfr_sku": "Aja CM122-2452", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769036339", "sku": "XTY-949506-Sample", "dw_sku": "XTY-949506", "mfr_sku": "Aja CM122-2453", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769069107", "sku": "XTY-949507-Sample", "dw_sku": "XTY-949507", "mfr_sku": "Aja CM122-2454", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769101875", "sku": "XTY-949508-Sample", "dw_sku": "XTY-949508", "mfr_sku": "Aja CM122-2455", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769167411", "sku": "XTY-949509-Sample", "dw_sku": "XTY-949509", "mfr_sku": "Aja CM122-2456", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769200179", "sku": "XTY-949510-Sample", "dw_sku": "XTY-949510", "mfr_sku": "Aja CM122-2457", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769232947", "sku": "XTY-949511-Sample", "dw_sku": "XTY-949511", "mfr_sku": "Aja CM122-2458", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769265715", "sku": "XTY-949512-Sample", "dw_sku": "XTY-949512", "mfr_sku": "Aja CM122-2459", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769298483", "sku": "XTY-949513-Sample", "dw_sku": "XTY-949513", "mfr_sku": "Aja CM122-2460", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769331251", "sku": "XTY-949514-Sample", "dw_sku": "XTY-949514", "mfr_sku": "Aja CM122-2461", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769364019", "sku": "XTY-949515-Sample", "dw_sku": "XTY-949515", "mfr_sku": "Aja CM122-2462", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769396787", "sku": "XTY-949516-Sample", "dw_sku": "XTY-949516", "mfr_sku": "Aja CM122-2463", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769429555", "sku": "XTY-949518-Sample", "dw_sku": "XTY-949518", "mfr_sku": "CM121-2430", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769495091", "sku": "XTY-949519-Sample", "dw_sku": "XTY-949519", "mfr_sku": "CM121-2431", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769527859", "sku": "XTY-949520-Sample", "dw_sku": "XTY-949520", "mfr_sku": "CM121-2432", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769560627", "sku": "XTY-949521-Sample", "dw_sku": "XTY-949521", "mfr_sku": "CM121-2433", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769626163", "sku": "XTY-949522-Sample", "dw_sku": "XTY-949522", "mfr_sku": "CM121-2434", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769658931", "sku": "XTY-949523-Sample", "dw_sku": "XTY-949523", "mfr_sku": "CM121-2435", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769691699", "sku": "XTY-949524-Sample", "dw_sku": "XTY-949524", "mfr_sku": "CM121-2436", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769724467", "sku": "XTY-949525-Sample", "dw_sku": "XTY-949525", "mfr_sku": "CM121-2437", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769757235", "sku": "XTY-949526-Sample", "dw_sku": "XTY-949526", "mfr_sku": "CM121-2438", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769790003", "sku": "XTY-949527-Sample", "dw_sku": "XTY-949527", "mfr_sku": "CM121-2439", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769822771", "sku": "XTY-949528-Sample", "dw_sku": "XTY-949528", "mfr_sku": "CM121-2440", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769855539", "sku": "XTY-949529-Sample", "dw_sku": "XTY-949529", "mfr_sku": "CM121-2441", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769888307", "sku": "XTY-949530-Sample", "dw_sku": "XTY-949530", "mfr_sku": "CM121-2442", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769921075", "sku": "XTY-949531-Sample", "dw_sku": "XTY-949531", "mfr_sku": "CM121-2443", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769953843", "sku": "XTY-949532-Sample", "dw_sku": "XTY-949532", "mfr_sku": "CM121-2444", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936769986611", "sku": "XTY-949533-Sample", "dw_sku": "XTY-949533", "mfr_sku": "CM121-2445", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770019379", "sku": "XTY-949534-Sample", "dw_sku": "XTY-949534", "mfr_sku": "CM121-2446", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770052147", "sku": "XTY-949535-Sample", "dw_sku": "XTY-949535", "mfr_sku": "CM121-2447", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770084915", "sku": "XTY-949537-Sample", "dw_sku": "XTY-949537", "mfr_sku": "Sansa CM120-2420", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770117683", "sku": "XTY-949538-Sample", "dw_sku": "XTY-949538", "mfr_sku": "Sansa CM120-2421", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770150451", "sku": "XTY-949539-Sample", "dw_sku": "XTY-949539", "mfr_sku": "Sansa CM120-2422", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770183219", "sku": "XTY-949540-Sample", "dw_sku": "XTY-949540", "mfr_sku": "Sansa CM120-2423", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770215987", "sku": "XTY-949541-Sample", "dw_sku": "XTY-949541", "mfr_sku": "Sansa CM120-2424", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770248755", "sku": "XTY-949542-Sample", "dw_sku": "XTY-949542", "mfr_sku": "Sansa CM120-2425", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770281523", "sku": "XTY-949543-Sample", "dw_sku": "XTY-949543", "mfr_sku": "Sansa CM120-2426", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770314291", "sku": "XTY-949544-Sample", "dw_sku": "XTY-949544", "mfr_sku": "Sansa CM120-2427", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770347059", "sku": "XTY-949545-Sample", "dw_sku": "XTY-949545", "mfr_sku": "Sansa CM120-2428", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770379827", "sku": "XTY-949546-Sample", "dw_sku": "XTY-949546", "mfr_sku": "Sansa CM120-2429", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770412595", "sku": "XTY-949548-Sample", "dw_sku": "XTY-949548", "mfr_sku": "Microfiber CM119-2404", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770445363", "sku": "XTY-949549-Sample", "dw_sku": "XTY-949549", "mfr_sku": "Microfiber CM119-2407", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770478131", "sku": "XTY-949550-Sample", "dw_sku": "XTY-949550", "mfr_sku": "Microfiber CM119-2408", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770543667", "sku": "XTY-949551-Sample", "dw_sku": "XTY-949551", "mfr_sku": "Microfiber CM119-2409", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770576435", "sku": "XTY-949552-Sample", "dw_sku": "XTY-949552", "mfr_sku": "Microfiber CM119-2410", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770609203", "sku": "XTY-949553-Sample", "dw_sku": "XTY-949553", "mfr_sku": "Microfiber CM119-2411", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770641971", "sku": "XTY-949554-Sample", "dw_sku": "XTY-949554", "mfr_sku": "Microfiber CM119-2412", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770674739", "sku": "XTY-949555-Sample", "dw_sku": "XTY-949555", "mfr_sku": "Microfiber CM119-2413", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770707507", "sku": "XTY-949556-Sample", "dw_sku": "XTY-949556", "mfr_sku": "Microfiber CM119-2414", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770740275", "sku": "XTY-949557-Sample", "dw_sku": "XTY-949557", "mfr_sku": "Microfiber CM119-2415", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770773043", "sku": "XTY-949558-Sample", "dw_sku": "XTY-949558", "mfr_sku": "Microfiber CM119-2416", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770805811", "sku": "XTY-949559-Sample", "dw_sku": "XTY-949559", "mfr_sku": "Microfiber CM119-2417", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770838579", "sku": "XTY-949560-Sample", "dw_sku": "XTY-949560", "mfr_sku": "Microfiber CM119-2418", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770871347", "sku": "XTY-949561-Sample", "dw_sku": "XTY-949561", "mfr_sku": "Microfiber CM119-2419", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770904115", "sku": "XTY-949563-Sample", "dw_sku": "XTY-949563", "mfr_sku": "Cavita CM118-2391", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770936883", "sku": "XTY-949564-Sample", "dw_sku": "XTY-949564", "mfr_sku": "Cavita CM118-2392", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936770969651", "sku": "XTY-949565-Sample", "dw_sku": "XTY-949565", "mfr_sku": "Cavita CM118-2393", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771002419", "sku": "XTY-949566-Sample", "dw_sku": "XTY-949566", "mfr_sku": "Cavita CM118-2394", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771035187", "sku": "XTY-949567-Sample", "dw_sku": "XTY-949567", "mfr_sku": "Cavita CM118-2395", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771100723", "sku": "XTY-949568-Sample", "dw_sku": "XTY-949568", "mfr_sku": "Cavita CM118-2396", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771166259", "sku": "XTY-949569-Sample", "dw_sku": "XTY-949569", "mfr_sku": "Cavita CM118-2397", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771199027", "sku": "XTY-949570-Sample", "dw_sku": "XTY-949570", "mfr_sku": "Cavita CM118-2398", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771231795", "sku": "XTY-949571-Sample", "dw_sku": "XTY-949571", "mfr_sku": "Cavita CM118-2399", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771264563", "sku": "XTY-949572-Sample", "dw_sku": "XTY-949572", "mfr_sku": "Cavita CM118-2400", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771297331", "sku": "XTY-949573-Sample", "dw_sku": "XTY-949573", "mfr_sku": "Cavita CM118-2401", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771330099", "sku": "XTY-949574-Sample", "dw_sku": "XTY-949574", "mfr_sku": "Cavita CM118-2402", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771362867", "sku": "XTY-949575-Sample", "dw_sku": "XTY-949575", "mfr_sku": "Cavita CM118-2403", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771395635", "sku": "XTY-949577-Sample", "dw_sku": "XTY-949577", "mfr_sku": "CM117-2373", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771428403", "sku": "XTY-949578-Sample", "dw_sku": "XTY-949578", "mfr_sku": "CM117-2374", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771461171", "sku": "XTY-949579-Sample", "dw_sku": "XTY-949579", "mfr_sku": "CM117-2375", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771493939", "sku": "XTY-949580-Sample", "dw_sku": "XTY-949580", "mfr_sku": "CM117-2377", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771526707", "sku": "XTY-949581-Sample", "dw_sku": "XTY-949581", "mfr_sku": "CM117-2378", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771559475", "sku": "XTY-949582-Sample", "dw_sku": "XTY-949582", "mfr_sku": "CM117-2379", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771592243", "sku": "XTY-949583-Sample", "dw_sku": "XTY-949583", "mfr_sku": "CM117-2380", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771625011", "sku": "XTY-949584-Sample", "dw_sku": "XTY-949584", "mfr_sku": "CM117-2381", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771657779", "sku": "XTY-949585-Sample", "dw_sku": "XTY-949585", "mfr_sku": "CM117-2383", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771690547", "sku": "XTY-949586-Sample", "dw_sku": "XTY-949586", "mfr_sku": "CM117-2384", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771723315", "sku": "XTY-949587-Sample", "dw_sku": "XTY-949587", "mfr_sku": "CM117-2385", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771756083", "sku": "XTY-949588-Sample", "dw_sku": "XTY-949588", "mfr_sku": "CM117-2386", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771821619", "sku": "XTY-949589-Sample", "dw_sku": "XTY-949589", "mfr_sku": "CM117-2387", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771854387", "sku": "XTY-949590-Sample", "dw_sku": "XTY-949590", "mfr_sku": "CM117-2388", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771887155", "sku": "XTY-949591-Sample", "dw_sku": "XTY-949591", "mfr_sku": "CM117-2389", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771919923", "sku": "XTY-949592-Sample", "dw_sku": "XTY-949592", "mfr_sku": "CM117-2390", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771952691", "sku": "XTY-949594-Sample", "dw_sku": "XTY-949594", "mfr_sku": "Sandbar CM116-2355", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936771985459", "sku": "XTY-949595-Sample", "dw_sku": "XTY-949595", "mfr_sku": "Sandbar CM116-2356", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772018227", "sku": "XTY-949596-Sample", "dw_sku": "XTY-949596", "mfr_sku": "Sandbar CM116-2357", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772083763", "sku": "XTY-949597-Sample", "dw_sku": "XTY-949597", "mfr_sku": "Sandbar CM116-2358", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772116531", "sku": "XTY-949598-Sample", "dw_sku": "XTY-949598", "mfr_sku": "Sandbar CM116-2359", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772149299", "sku": "XTY-949599-Sample", "dw_sku": "XTY-949599", "mfr_sku": "Sandbar CM116-2360", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772214835", "sku": "XTY-949600-Sample", "dw_sku": "XTY-949600", "mfr_sku": "Sandbar CM116-2361", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772247603", "sku": "XTY-949601-Sample", "dw_sku": "XTY-949601", "mfr_sku": "Sandbar CM116-2362", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772280371", "sku": "XTY-949602-Sample", "dw_sku": "XTY-949602", "mfr_sku": "Sandbar CM116-2363", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772313139", "sku": "XTY-949603-Sample", "dw_sku": "XTY-949603", "mfr_sku": "Sandbar CM116-2364", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772345907", "sku": "XTY-949604-Sample", "dw_sku": "XTY-949604", "mfr_sku": "Sandbar CM116-2365", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772411443", "sku": "XTY-949605-Sample", "dw_sku": "XTY-949605", "mfr_sku": "Sandbar CM116-2366", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772444211", "sku": "XTY-949606-Sample", "dw_sku": "XTY-949606", "mfr_sku": "Sandbar CM116-2367", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772476979", "sku": "XTY-949607-Sample", "dw_sku": "XTY-949607", "mfr_sku": "Sandbar CM116-2368", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772509747", "sku": "XTY-949608-Sample", "dw_sku": "XTY-949608", "mfr_sku": "Sandbar CM116-2369", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772542515", "sku": "XTY-949609-Sample", "dw_sku": "XTY-949609", "mfr_sku": "Sandbar CM116-2370", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772608051", "sku": "XTY-949610-Sample", "dw_sku": "XTY-949610", "mfr_sku": "Sandbar CM116-2371", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772640819", "sku": "XTY-949611-Sample", "dw_sku": "XTY-949611", "mfr_sku": "Sandbar CM116-2372", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772673587", "sku": "XTY-949613-Sample", "dw_sku": "XTY-949613", "mfr_sku": "Gaughin CM115-2339", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772706355", "sku": "XTY-949614-Sample", "dw_sku": "XTY-949614", "mfr_sku": "Gaughin CM115-2340", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772771891", "sku": "XTY-949615-Sample", "dw_sku": "XTY-949615", "mfr_sku": "Gaughin CM115-2341", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772804659", "sku": "XTY-949616-Sample", "dw_sku": "XTY-949616", "mfr_sku": "Gaughin CM115-2342", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772837427", "sku": "XTY-949617-Sample", "dw_sku": "XTY-949617", "mfr_sku": "Gaughin CM115-2343", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772870195", "sku": "XTY-949618-Sample", "dw_sku": "XTY-949618", "mfr_sku": "Gaughin CM115-2344", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772902963", "sku": "XTY-949619-Sample", "dw_sku": "XTY-949619", "mfr_sku": "Gaughin CM115-2345", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772935731", "sku": "XTY-949620-Sample", "dw_sku": "XTY-949620", "mfr_sku": "Gaughin CM115-2346", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936772968499", "sku": "XTY-949621-Sample", "dw_sku": "XTY-949621", "mfr_sku": "Gaughin CM115-2347", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773034035", "sku": "XTY-949622-Sample", "dw_sku": "XTY-949622", "mfr_sku": "Gaughin CM115-2348", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773066803", "sku": "XTY-949623-Sample", "dw_sku": "XTY-949623", "mfr_sku": "Gaughin CM115-2349", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773099571", "sku": "XTY-949624-Sample", "dw_sku": "XTY-949624", "mfr_sku": "Gaughin CM115-2350", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773132339", "sku": "XTY-949625-Sample", "dw_sku": "XTY-949625", "mfr_sku": "Gaughin CM115-2351", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773165107", "sku": "XTY-949626-Sample", "dw_sku": "XTY-949626", "mfr_sku": "Gaughin CM115-2352", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773230643", "sku": "XTY-949627-Sample", "dw_sku": "XTY-949627", "mfr_sku": "Gaughin CM115-2353", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773263411", "sku": "XTY-949628-Sample", "dw_sku": "XTY-949628", "mfr_sku": "Gaughin CM115-2354", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773296179", "sku": "XTY-949630-Sample", "dw_sku": "XTY-949630", "mfr_sku": "Verona CM114-2325", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773328947", "sku": "XTY-949631-Sample", "dw_sku": "XTY-949631", "mfr_sku": "Verona CM114-2326", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773361715", "sku": "XTY-949632-Sample", "dw_sku": "XTY-949632", "mfr_sku": "Verona CM114-2327", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773394483", "sku": "XTY-949633-Sample", "dw_sku": "XTY-949633", "mfr_sku": "Verona CM114-2328", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773427251", "sku": "XTY-949634-Sample", "dw_sku": "XTY-949634", "mfr_sku": "Verona CM114-2329", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773492787", "sku": "XTY-949635-Sample", "dw_sku": "XTY-949635", "mfr_sku": "Verona CM114-2330", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773525555", "sku": "XTY-949636-Sample", "dw_sku": "XTY-949636", "mfr_sku": "Verona CM114-2331", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773558323", "sku": "XTY-949637-Sample", "dw_sku": "XTY-949637", "mfr_sku": "Verona CM114-2332", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773591091", "sku": "XTY-949638-Sample", "dw_sku": "XTY-949638", "mfr_sku": "Verona CM114-2333", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773623859", "sku": "XTY-949639-Sample", "dw_sku": "XTY-949639", "mfr_sku": "Verona CM114-2334", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773656627", "sku": "XTY-949640-Sample", "dw_sku": "XTY-949640", "mfr_sku": "Verona CM114-2335", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773722163", "sku": "XTY-949641-Sample", "dw_sku": "XTY-949641", "mfr_sku": "Verona CM114-2336", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773754931", "sku": "XTY-949642-Sample", "dw_sku": "XTY-949642", "mfr_sku": "Verona CM114-2337", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773787699", "sku": "XTY-949643-Sample", "dw_sku": "XTY-949643", "mfr_sku": "Verona CM114-2338", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773886003", "sku": "XTY-949646-Sample", "dw_sku": "XTY-949646", "mfr_sku": "Bellini CM113-2309", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773918771", "sku": "XTY-949647-Sample", "dw_sku": "XTY-949647", "mfr_sku": "Bellini CM113-2310", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773951539", "sku": "XTY-949648-Sample", "dw_sku": "XTY-949648", "mfr_sku": "Bellini CM113-2311", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936773984307", "sku": "XTY-949649-Sample", "dw_sku": "XTY-949649", "mfr_sku": "Bellini CM113-2312", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774017075", "sku": "XTY-949650-Sample", "dw_sku": "XTY-949650", "mfr_sku": "Bellini CM113-2313", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774049843", "sku": "XTY-949651-Sample", "dw_sku": "XTY-949651", "mfr_sku": "Bellini CM113-2314", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774082611", "sku": "XTY-949652-Sample", "dw_sku": "XTY-949652", "mfr_sku": "Bellini CM113-2315", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774115379", "sku": "XTY-949653-Sample", "dw_sku": "XTY-949653", "mfr_sku": "Bellini CM113-2316", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774148147", "sku": "XTY-949654-Sample", "dw_sku": "XTY-949654", "mfr_sku": "Bellini CM113-2317", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774180915", "sku": "XTY-949655-Sample", "dw_sku": "XTY-949655", "mfr_sku": "Bellini CM113-2318", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774213683", "sku": "XTY-949656-Sample", "dw_sku": "XTY-949656", "mfr_sku": "Bellini CM113-2319", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774246451", "sku": "XTY-949657-Sample", "dw_sku": "XTY-949657", "mfr_sku": "Bellini CM113-2320", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774279219", "sku": "XTY-949658-Sample", "dw_sku": "XTY-949658", "mfr_sku": "Bellini CM113-2321", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774311987", "sku": "XTY-949659-Sample", "dw_sku": "XTY-949659", "mfr_sku": "Bellini CM113-2322", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774344755", "sku": "XTY-949660-Sample", "dw_sku": "XTY-949660", "mfr_sku": "Bellini CM113-2323", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774377523", "sku": "XTY-949661-Sample", "dw_sku": "XTY-949661", "mfr_sku": "Bellini CM113-2324", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774443059", "sku": "XTY-949664-Sample", "dw_sku": "XTY-949664", "mfr_sku": "Nagano CM112-2295", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774475827", "sku": "XTY-949665-Sample", "dw_sku": "XTY-949665", "mfr_sku": "Nagano CM112-2296", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774508595", "sku": "XTY-949666-Sample", "dw_sku": "XTY-949666", "mfr_sku": "Nagano CM112-2297", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774541363", "sku": "XTY-949667-Sample", "dw_sku": "XTY-949667", "mfr_sku": "Nagano CM112-2298", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774574131", "sku": "XTY-949668-Sample", "dw_sku": "XTY-949668", "mfr_sku": "Nagano CM112-2299", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774606899", "sku": "XTY-949669-Sample", "dw_sku": "XTY-949669", "mfr_sku": "Nagano CM112-2300", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774639667", "sku": "XTY-949670-Sample", "dw_sku": "XTY-949670", "mfr_sku": "Nagano CM112-2301", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774705203", "sku": "XTY-949671-Sample", "dw_sku": "XTY-949671", "mfr_sku": "Nagano CM112-2302", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774770739", "sku": "XTY-949672-Sample", "dw_sku": "XTY-949672", "mfr_sku": "Nagano CM112-2303", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774803507", "sku": "XTY-949673-Sample", "dw_sku": "XTY-949673", "mfr_sku": "Nagano CM112-2304", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774869043", "sku": "XTY-949674-Sample", "dw_sku": "XTY-949674", "mfr_sku": "Nagano CM112-2305", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774901811", "sku": "XTY-949675-Sample", "dw_sku": "XTY-949675", "mfr_sku": "Nagano CM112-2306", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936774934579", "sku": "XTY-949676-Sample", "dw_sku": "XTY-949676", "mfr_sku": "Nagano CM112-2307", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775000115", "sku": "XTY-949677-Sample", "dw_sku": "XTY-949677", "mfr_sku": "Nagano CM112-2308", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775065651", "sku": "XTY-949680-Sample", "dw_sku": "XTY-949680", "mfr_sku": "Weft CM111-2279", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775098419", "sku": "XTY-949681-Sample", "dw_sku": "XTY-949681", "mfr_sku": "Weft CM111-2280", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775131187", "sku": "XTY-949682-Sample", "dw_sku": "XTY-949682", "mfr_sku": "Weft CM111-2281", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775229491", "sku": "XTY-949683-Sample", "dw_sku": "XTY-949683", "mfr_sku": "Weft CM111-2282", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775262259", "sku": "XTY-949684-Sample", "dw_sku": "XTY-949684", "mfr_sku": "Weft CM111-2283", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775295027", "sku": "XTY-949685-Sample", "dw_sku": "XTY-949685", "mfr_sku": "Weft CM111-2284", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775327795", "sku": "XTY-949686-Sample", "dw_sku": "XTY-949686", "mfr_sku": "Weft CM111-2285", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775360563", "sku": "XTY-949687-Sample", "dw_sku": "XTY-949687", "mfr_sku": "Weft CM111-2286", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775393331", "sku": "XTY-949688-Sample", "dw_sku": "XTY-949688", "mfr_sku": "Weft CM111-2287", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775426099", "sku": "XTY-949689-Sample", "dw_sku": "XTY-949689", "mfr_sku": "Weft CM111-2288", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775458867", "sku": "XTY-949690-Sample", "dw_sku": "XTY-949690", "mfr_sku": "Weft CM111-2289", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775524403", "sku": "XTY-949691-Sample", "dw_sku": "XTY-949691", "mfr_sku": "Weft CM111-2290", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775557171", "sku": "XTY-949692-Sample", "dw_sku": "XTY-949692", "mfr_sku": "Weft CM111-2291", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775589939", "sku": "XTY-949693-Sample", "dw_sku": "XTY-949693", "mfr_sku": "Weft CM111-2292", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775622707", "sku": "XTY-949694-Sample", "dw_sku": "XTY-949694", "mfr_sku": "Weft CM111-2293", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936775655475", "sku": "XTY-949695-Sample", "dw_sku": "XTY-949695", "mfr_sku": "Weft CM111-2294", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776376371", "sku": "XTY-949718-Sample", "dw_sku": "XTY-949718", "mfr_sku": "Mandalay CM109-2243", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776409139", "sku": "XTY-949719-Sample", "dw_sku": "XTY-949719", "mfr_sku": "Mandalay CM109-2244", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776441907", "sku": "XTY-949720-Sample", "dw_sku": "XTY-949720", "mfr_sku": "Mandalay CM109-2245", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776474675", "sku": "XTY-949721-Sample", "dw_sku": "XTY-949721", "mfr_sku": "Mandalay CM109-2246", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776507443", "sku": "XTY-949722-Sample", "dw_sku": "XTY-949722", "mfr_sku": "Mandalay CM109-2247", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776540211", "sku": "XTY-949723-Sample", "dw_sku": "XTY-949723", "mfr_sku": "Mandalay CM109-2248", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776572979", "sku": "XTY-949724-Sample", "dw_sku": "XTY-949724", "mfr_sku": "Mandalay CM109-2249", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776605747", "sku": "XTY-949725-Sample", "dw_sku": "XTY-949725", "mfr_sku": "Mandalay CM109-2250", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776638515", "sku": "XTY-949726-Sample", "dw_sku": "XTY-949726", "mfr_sku": "Mandalay CM109-2251", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776671283", "sku": "XTY-949727-Sample", "dw_sku": "XTY-949727", "mfr_sku": "Mandalay CM109-2252", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776704051", "sku": "XTY-949728-Sample", "dw_sku": "XTY-949728", "mfr_sku": "Mandalay CM109-2253", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776736819", "sku": "XTY-949729-Sample", "dw_sku": "XTY-949729", "mfr_sku": "Mandalay CM109-2254", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776769587", "sku": "XTY-949730-Sample", "dw_sku": "XTY-949730", "mfr_sku": "Mandalay CM109-2255", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776802355", "sku": "XTY-949731-Sample", "dw_sku": "XTY-949731", "mfr_sku": "Mandalay CM109-2256", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776835123", "sku": "XTY-949732-Sample", "dw_sku": "XTY-949732", "mfr_sku": "Mandalay CM109-2257", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776867891", "sku": "XTY-949733-Sample", "dw_sku": "XTY-949733", "mfr_sku": "Mandalay CM109-2258", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776900659", "sku": "XTY-949734-Sample", "dw_sku": "XTY-949734", "mfr_sku": "Mandalay CM109-2259", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776933427", "sku": "XTY-949735-Sample", "dw_sku": "XTY-949735", "mfr_sku": "Mandalay CM109-2260", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776966195", "sku": "XTY-949737-Sample", "dw_sku": "XTY-949737", "mfr_sku": "Artech CM108-2235", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936776998963", "sku": "XTY-949738-Sample", "dw_sku": "XTY-949738", "mfr_sku": "Artech CM108-2236", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777031731", "sku": "XTY-949739-Sample", "dw_sku": "XTY-949739", "mfr_sku": "Artech CM108-2237", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777064499", "sku": "XTY-949740-Sample", "dw_sku": "XTY-949740", "mfr_sku": "Artech CM108-2238", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777097267", "sku": "XTY-949741-Sample", "dw_sku": "XTY-949741", "mfr_sku": "Artech CM108-2239", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777130035", "sku": "XTY-949742-Sample", "dw_sku": "XTY-949742", "mfr_sku": "Artech CM108-2240", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777162803", "sku": "XTY-949743-Sample", "dw_sku": "XTY-949743", "mfr_sku": "Artech CM108-2241", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777195571", "sku": "XTY-949744-Sample", "dw_sku": "XTY-949744", "mfr_sku": "Artech CM108-2242", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777228339", "sku": "XTY-949746-Sample", "dw_sku": "XTY-949746", "mfr_sku": "Uberweave CM107-2217", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777261107", "sku": "XTY-949747-Sample", "dw_sku": "XTY-949747", "mfr_sku": "Uberweave CM107-2218", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777293875", "sku": "XTY-949748-Sample", "dw_sku": "XTY-949748", "mfr_sku": "Uberweave CM107-2219", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777326643", "sku": "XTY-949749-Sample", "dw_sku": "XTY-949749", "mfr_sku": "Uberweave CM107-2220", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777359411", "sku": "XTY-949750-Sample", "dw_sku": "XTY-949750", "mfr_sku": "Uberweave CM107-2221", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777392179", "sku": "XTY-949751-Sample", "dw_sku": "XTY-949751", "mfr_sku": "Uberweave CM107-2222", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777457715", "sku": "XTY-949752-Sample", "dw_sku": "XTY-949752", "mfr_sku": "Uberweave CM107-2223", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777490483", "sku": "XTY-949753-Sample", "dw_sku": "XTY-949753", "mfr_sku": "Uberweave CM107-2224", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777523251", "sku": "XTY-949754-Sample", "dw_sku": "XTY-949754", "mfr_sku": "Uberweave CM107-2225", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777556019", "sku": "XTY-949755-Sample", "dw_sku": "XTY-949755", "mfr_sku": "Uberweave CM107-2226", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777588787", "sku": "XTY-949756-Sample", "dw_sku": "XTY-949756", "mfr_sku": "Uberweave CM107-2227", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777654323", "sku": "XTY-949757-Sample", "dw_sku": "XTY-949757", "mfr_sku": "Uberweave CM107-2228", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777687091", "sku": "XTY-949758-Sample", "dw_sku": "XTY-949758", "mfr_sku": "Uberweave CM107-2229", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777719859", "sku": "XTY-949759-Sample", "dw_sku": "XTY-949759", "mfr_sku": "Uberweave CM107-2230", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777752627", "sku": "XTY-949760-Sample", "dw_sku": "XTY-949760", "mfr_sku": "Uberweave CM107-2231", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777785395", "sku": "XTY-949761-Sample", "dw_sku": "XTY-949761", "mfr_sku": "Uberweave CM107-2232", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777818163", "sku": "XTY-949762-Sample", "dw_sku": "XTY-949762", "mfr_sku": "Uberweave CM107-2233", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777850931", "sku": "XTY-949763-Sample", "dw_sku": "XTY-949763", "mfr_sku": "Uberweave CM107-2234", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777883699", "sku": "XTY-949764-Sample", "dw_sku": "XTY-949764", "mfr_sku": "Kingsguard CM106-2199", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777916467", "sku": "XTY-949765-Sample", "dw_sku": "XTY-949765", "mfr_sku": "Kingsguard CM106-2200", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777949235", "sku": "XTY-949766-Sample", "dw_sku": "XTY-949766", "mfr_sku": "Kingsguard CM106-2201", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936777982003", "sku": "XTY-949767-Sample", "dw_sku": "XTY-949767", "mfr_sku": "Kingsguard CM106-2202", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936778014771", "sku": "XTY-949768-Sample", "dw_sku": "XTY-949768", "mfr_sku": "Kingsguard CM106-2203", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936778047539", "sku": "XTY-949769-Sample", "dw_sku": "XTY-949769", "mfr_sku": "Kingsguard CM106-2204", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936778080307", "sku": "XTY-949770-Sample", "dw_sku": "XTY-949770", "mfr_sku": "Kingsguard CM106-2205", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936778113075", "sku": "XTY-949771-Sample", "dw_sku": "XTY-949771", "mfr_sku": "Kingsguard CM106-2206", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936778145843", "sku": "XTY-949772-Sample", "dw_sku": "XTY-949772", "mfr_sku": "Kingsguard CM106-2207", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936778178611", "sku": "XTY-949773-Sample", "dw_sku": "XTY-949773", "mfr_sku": "Kingsguard CM106-2208", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936778211379", "sku": "XTY-949774-Sample", "dw_sku": "XTY-949774", "mfr_sku": "Kingsguard CM106-2209", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936778244147", "sku": "XTY-949775-Sample", "dw_sku": "XTY-949775", "mfr_sku": "Kingsguard CM106-2210", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936778276915", "sku": "XTY-949776-Sample", "dw_sku": "XTY-949776", "mfr_sku": "Kingsguard CM106-2211", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936778309683", "sku": "XTY-949777-Sample", "dw_sku": "XTY-949777", "mfr_sku": "Kingsguard CM106-2212", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936778342451", "sku": "XTY-949778-Sample", "dw_sku": "XTY-949778", "mfr_sku": "Kingsguard CM106-2213", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936778407987", "sku": "XTY-949779-Sample", "dw_sku": "XTY-949779", "mfr_sku": "Kingsguard CM106-2214", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936778440755", "sku": "XTY-949780-Sample", "dw_sku": "XTY-949780", "mfr_sku": "Kingsguard CM106-2215", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936778473523", "sku": "XTY-949781-Sample", "dw_sku": "XTY-949781", "mfr_sku": "Kingsguard CM106-2216", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779128883", "sku": "XTY-949802-Sample", "dw_sku": "XTY-949802", "mfr_sku": "CM104-2169", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779194419", "sku": "XTY-949804-Sample", "dw_sku": "XTY-949804", "mfr_sku": "CM104-2171", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779227187", "sku": "XTY-949805-Sample", "dw_sku": "XTY-949805", "mfr_sku": "CM104-2172", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779259955", "sku": "XTY-949806-Sample", "dw_sku": "XTY-949806", "mfr_sku": "CM104-2173", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779292723", "sku": "XTY-949807-Sample", "dw_sku": "XTY-949807", "mfr_sku": "CM104-2174", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779325491", "sku": "XTY-949808-Sample", "dw_sku": "XTY-949808", "mfr_sku": "CM104-2175", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779358259", "sku": "XTY-949809-Sample", "dw_sku": "XTY-949809", "mfr_sku": "CM104-2176", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779391027", "sku": "XTY-949810-Sample", "dw_sku": "XTY-949810", "mfr_sku": "CM104-2177", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779423795", "sku": "XTY-949811-Sample", "dw_sku": "XTY-949811", "mfr_sku": "CM104-2178", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779489331", "sku": "XTY-949812-Sample", "dw_sku": "XTY-949812", "mfr_sku": "CM104-2179", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779554867", "sku": "XTY-949815-Sample", "dw_sku": "XTY-949815", "mfr_sku": "Apollo CM102-2138", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779620403", "sku": "XTY-949816-Sample", "dw_sku": "XTY-949816", "mfr_sku": "Apollo CM102-2139", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779653171", "sku": "XTY-949817-Sample", "dw_sku": "XTY-949817", "mfr_sku": "Apollo CM102-2140", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779685939", "sku": "XTY-949818-Sample", "dw_sku": "XTY-949818", "mfr_sku": "Apollo CM102-2141", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779718707", "sku": "XTY-949819-Sample", "dw_sku": "XTY-949819", "mfr_sku": "Apollo CM102-2142", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779751475", "sku": "XTY-949820-Sample", "dw_sku": "XTY-949820", "mfr_sku": "Apollo CM102-2143", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779784243", "sku": "XTY-949821-Sample", "dw_sku": "XTY-949821", "mfr_sku": "Apollo CM102-2144", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779817011", "sku": "XTY-949822-Sample", "dw_sku": "XTY-949822", "mfr_sku": "Apollo CM102-2145", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779882547", "sku": "XTY-949823-Sample", "dw_sku": "XTY-949823", "mfr_sku": "Apollo CM102-2146", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779915315", "sku": "XTY-949824-Sample", "dw_sku": "XTY-949824", "mfr_sku": "Apollo CM102-2147", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936779980851", "sku": "XTY-949826-Sample", "dw_sku": "XTY-949826", "mfr_sku": "Apollo CM102-2149", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936780013619", "sku": "XTY-949827-Sample", "dw_sku": "XTY-949827", "mfr_sku": "Apollo CM102-2150", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936780046387", "sku": "XTY-949828-Sample", "dw_sku": "XTY-949828", "mfr_sku": "Apollo CM102-2151", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936780079155", "sku": "XTY-949829-Sample", "dw_sku": "XTY-949829", "mfr_sku": "Apollo CM102-2152", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936780144691", "sku": "XTY-949830-Sample", "dw_sku": "XTY-949830", "mfr_sku": "Apollo CM102-2153", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936780177459", "sku": "XTY-949831-Sample", "dw_sku": "XTY-949831", "mfr_sku": "Apollo CM102-2154", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936780242995", "sku": "XTY-949832-Sample", "dw_sku": "XTY-949832", "mfr_sku": "Apollo CM102-2155", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936780996659", "sku": "XTY-949853-Sample", "dw_sku": "XTY-949853", "mfr_sku": "CM100-2111", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936781029427", "sku": "XTY-949854-Sample", "dw_sku": "XTY-949854", "mfr_sku": "CM100-2112", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936781094963", "sku": "XTY-949855-Sample", "dw_sku": "XTY-949855", "mfr_sku": "CM100-2113", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936781127731", "sku": "XTY-949856-Sample", "dw_sku": "XTY-949856", "mfr_sku": "CM100-2114", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936781160499", "sku": "XTY-949857-Sample", "dw_sku": "XTY-949857", "mfr_sku": "CM100-2115", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936781226035", "sku": "XTY-949858-Sample", "dw_sku": "XTY-949858", "mfr_sku": "CM100-2116", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936781258803", "sku": "XTY-949859-Sample", "dw_sku": "XTY-949859", "mfr_sku": "CM100-2117", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936781291571", "sku": "XTY-949860-Sample", "dw_sku": "XTY-949860", "mfr_sku": "CM100-2118", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "6936781324339", "sku": "XTY-949861-Sample", "dw_sku": "XTY-949861", "mfr_sku": "CM100-2119", "current_price": null, "uom": "Full Roll", "width": "52/54\u201d", "reason": "no-momentum-match"}
+{"shopify_product_id": "7863153131571", "sku": "XE7-66827-sample", "dw_sku": "XE7-66827", "mfr_sku": "", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "7863153819699", "sku": "XA8-66474-sample", "dw_sku": "XA8-66474", "mfr_sku": "", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "7863154147379", "sku": "XB2-66506-sample", "dw_sku": "XB2-66506", "mfr_sku": "", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "7863154376755", "sku": "XB2-66516-sample", "dw_sku": "XB2-66516", "mfr_sku": "", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "7863154475059", "sku": "XE7-66831-sample", "dw_sku": "XE7-66831", "mfr_sku": "", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "7863154606131", "sku": "XE7-66840-sample", "dw_sku": "XE7-66840", "mfr_sku": "", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "7863154671667", "sku": "XG6-66952-sample", "dw_sku": "XG6-66952", "mfr_sku": "", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "7863154769971", "sku": "XG6-66937-sample", "dw_sku": "XG6-66937", "mfr_sku": "", "current_price": null, "uom": null, "width": "", "reason": "no-momentum-match"}
+{"shopify_product_id": "7863155064883", "sku": "XCD-69430", "dw_sku": "XCD", "mfr_sku": "", "current_price": 175.13, "uom": null, "width": "52\"", "reason": "must-quote-mdc (XCD-69430 excluded per directive)"}

← d8a2e55 auto-data-snapshot: 2026-09-09T13:23:51 (1 data files) — dat  ·  back to Tk 11331 Exec  ·  TK-11331 Day-1 complete: D1 569 reordered + D2 431 backfille bf6dd77 →