[object Object]

← back to Japan Enrich

sangetsu: fix 6 straggler patterns (cover-only, no per-colorway swatch)

93611f5426d1866a2833a4298f4b179a0ba81aa5 · 2026-07-01 11:08:58 -0700 · Steve Abrams

The 7 patterns the main backfill skipped have real colorway SKUs in the
'Full Collection' attribute but the vendor published only one shared cover
image (no per-colorway swatches). fix_sangetsu_stragglers.py fills their SKU
list and maps every colorway to the shared cover so they render instead of
blank. japan no-image patterns: 257 → 8 (only Acadia, a dead vendor product,
and 7 pre-existing SKU-without-image rows remain).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

Files touched

Diff

commit 93611f5426d1866a2833a4298f4b179a0ba81aa5
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Wed Jul 1 11:08:58 2026 -0700

    sangetsu: fix 6 straggler patterns (cover-only, no per-colorway swatch)
    
    The 7 patterns the main backfill skipped have real colorway SKUs in the
    'Full Collection' attribute but the vendor published only one shared cover
    image (no per-colorway swatches). fix_sangetsu_stragglers.py fills their SKU
    list and maps every colorway to the shared cover so they render instead of
    blank. japan no-image patterns: 257 → 8 (only Acadia, a dead vendor product,
    and 7 pre-existing SKU-without-image rows remain).
    
    Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
 fix_sangetsu_stragglers.py     | 92 ++++++++++++++++++++++++++++++++++++++++++
 staging/sangetsu-staging.jsonl | 12 +++---
 2 files changed, 98 insertions(+), 6 deletions(-)

diff --git a/fix_sangetsu_stragglers.py b/fix_sangetsu_stragglers.py
new file mode 100644
index 0000000..a1ce761
--- /dev/null
+++ b/fix_sangetsu_stragglers.py
@@ -0,0 +1,92 @@
+#!/usr/bin/env python3
+"""
+Fix the last ~7 Sangetsu patterns the main backfill couldn't complete: they DO
+have colorway SKUs in the 'Full Collection' attribute (e.g. 2321-01…2321-08) but
+the vendor published only ONE shared cover image (COVER-…jpg), no per-colorway
+swatches — so the SKU→image prefix match found nothing and skipped them.
+
+Here we accept that reality: fill colorway_skus from the attribute and map every
+colorway to the shared cover image, so the pattern renders (real SKU chips + an
+image) instead of a blank card. Atomic temp+rename; only touches still-empty rows.
+
+Usage: fix_sangetsu_stragglers.py
+"""
+import json, os, re, time, urllib.request, urllib.error
+
+ROOT = os.path.dirname(__file__)
+STAGING = os.path.join(ROOT, "staging", "sangetsu-staging.jsonl")
+API = "https://www.sangetsu-goodrich.co.th/wp-json/wc/store/v1"
+UA = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) japan-enrich/sangetsu-stragglers"
+DIM = re.compile(r"-\d+x\d+(?=\.\w+$)")
+
+
+def get(path, tries=3):
+    for i in range(tries):
+        try:
+            req = urllib.request.Request(API + path, headers={"User-Agent": UA, "Accept": "application/json"})
+            with urllib.request.urlopen(req, timeout=45) as r:
+                return json.loads(r.read().decode("utf-8"))
+        except (urllib.error.URLError, TimeoutError, json.JSONDecodeError):
+            if i == tries - 1:
+                return None
+            time.sleep(1.2 * (i + 1))
+    return None
+
+
+def cover_and_skus(url):
+    slug = (url or "").rstrip("/").rsplit("/", 1)[-1]
+    plist = get(f"/products?slug={slug}")
+    if not (isinstance(plist, list) and plist):
+        return None, None, None
+    p = plist[0]
+    skus = []
+    for a in p.get("attributes") or []:
+        terms = [t.get("name", "").strip() for t in (a.get("terms") or []) if t.get("name")]
+        if len(terms) > len(skus):
+            skus = terms
+    cover = None
+    for im in (p.get("images") or []):
+        if im.get("src"):
+            cover = DIM.sub("", im["src"])
+            break
+    if not cover:                                   # fall back to any variation image
+        var = get(f"/products?type=variation&parent={p['id']}&per_page=1") or []
+        for v in (var if isinstance(var, list) else []):
+            for im in (v.get("images") or []):
+                if im.get("src"):
+                    cover = DIM.sub("", im["src"]); break
+    pm = re.match(r"^[A-Za-z]+", skus[0]) if skus else None
+    return skus, cover, (pm.group(0) if pm else None)
+
+
+def main():
+    rows = [json.loads(l) for l in open(STAGING) if l.strip()]
+    empties = [r for r in rows if not r.get("colorway_skus")]
+    print(f"stragglers: {len(empties)} still-empty patterns")
+    fixed = 0
+    for r in empties:
+        skus, cover, prefix = cover_and_skus(r.get("source_url"))
+        if skus and cover:
+            r["colorway_skus"] = skus
+            r["colorway_count"] = len(skus)
+            r["sku_images"] = {s: cover for s in skus}      # shared cover (vendor has no per-colorway swatch)
+            r["cover_only"] = True
+            r["backfilled"] = True
+            if prefix:
+                r["mfr_prefix"] = prefix
+            fixed += 1
+            print(f"  {(r.get('pattern') or '?'):22} +{len(skus)} SKUs (shared cover)")
+        else:
+            print(f"  {(r.get('pattern') or '?'):22} — still no data")
+        time.sleep(0.25)
+    tmp = STAGING + ".tmp"
+    with open(tmp, "w") as f:
+        for r in rows:
+            f.write(json.dumps(r, ensure_ascii=False) + "\n")
+    os.replace(tmp, STAGING)
+    still = sum(1 for r in rows if not r.get("colorway_skus"))
+    print(f"\nfixed {fixed}; still-empty now {still}  → {STAGING}")
+
+
+if __name__ == "__main__":
+    main()
diff --git a/staging/sangetsu-staging.jsonl b/staging/sangetsu-staging.jsonl
index 6e40510..9021865 100644
--- a/staging/sangetsu-staging.jsonl
+++ b/staging/sangetsu-staging.jsonl
@@ -388,10 +388,10 @@
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/modern-metalline-wallpapers/", "pattern": "Modern Metalline", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["Y48180", "Y48181", "Y48182", "Y48183", "Y48184", "Y48185", "Y48186", "Y48187", "Y48188", "Y48189", "Y48190", "Y48191", "Y48192", "Y48193", "Y48194", "Y48195"], "colorway_count": 16, "sku_images": {"Y48180": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48180.jpg", "Y48181": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48181.jpg", "Y48182": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48182.jpg", "Y48183": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48183.jpg", "Y48184": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48184.jpg", "Y48185": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48185.jpg", "Y48186": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48186.jpg", "Y48187": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48187.jpg", "Y48188": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48188.jpg", "Y48189": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48189.jpg", "Y48190": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48190.jpg", "Y48191": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48191.jpg", "Y48192": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48192.jpg", "Y48193": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48193.jpg", "Y48194": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48194.jpg", "Y48195": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48195.jpg"}, "mfr_prefix": "Y", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/paris-silk-nights-wallpapers/", "pattern": "Paris Silk Nights", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": true}, "colorway_skus": ["307323", "Y48208", "Y48209", "Y48210", "Y48211", "Y48212", "Y48213", "Y48214", "Y48215", "Y48216", "Y48217", "Y48218", "Y48219", "Y48220", "Y48221", "Y48222", "Y48223"], "colorway_count": 17, "sku_images": {"307323": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2021/01/307323.jpg", "Y48208": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48208.jpg", "Y48209": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48209.jpg", "Y48210": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48210.jpg", "Y48211": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48211.jpg", "Y48212": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48212.jpg", "Y48213": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48213.jpg", "Y48214": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48214.jpg", "Y48215": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48215.jpg", "Y48216": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48216.jpg", "Y48217": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48217.jpg", "Y48218": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48218.jpg", "Y48219": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48219.jpg", "Y48220": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48220.jpg", "Y48221": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48221.jpg", "Y48222": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48222.jpg", "Y48223": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48223.jpg"}, "mfr_prefix": null, "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/paris-silk-wallpapers/", "pattern": "Paris Silk", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": true}, "colorway_skus": ["Y48200", "Y48201", "Y48202", "Y48203", "Y48204", "Y48205", "Y48206", "Y48207"], "colorway_count": 8, "sku_images": {"Y48200": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48200.jpg", "Y48201": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48201.jpg", "Y48202": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48202.jpg", "Y48203": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48203.jpg", "Y48204": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48204.jpg", "Y48205": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48205.jpg", "Y48206": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48206.jpg", "Y48207": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/Y48207.jpg"}, "mfr_prefix": "Y", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
-{"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/on-water-wallpapers/", "pattern": "On Water", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": [], "colorway_count": 0, "sku_images": {}, "mfr_prefix": null, "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
+{"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/on-water-wallpapers/", "pattern": "On Water", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["2321-01", "2321-02", "2321-03", "2321-04", "2321-05", "2321-06", "2321-07", "2321-08"], "colorway_count": 8, "sku_images": {"2321-01": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-ON-WATER_WINTER-RIVER2321-03_ROGER-THOMAS-FOR-KOROSEAL-1.jpg", "2321-02": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-ON-WATER_WINTER-RIVER2321-03_ROGER-THOMAS-FOR-KOROSEAL-1.jpg", "2321-03": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-ON-WATER_WINTER-RIVER2321-03_ROGER-THOMAS-FOR-KOROSEAL-1.jpg", "2321-04": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-ON-WATER_WINTER-RIVER2321-03_ROGER-THOMAS-FOR-KOROSEAL-1.jpg", "2321-05": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-ON-WATER_WINTER-RIVER2321-03_ROGER-THOMAS-FOR-KOROSEAL-1.jpg", "2321-06": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-ON-WATER_WINTER-RIVER2321-03_ROGER-THOMAS-FOR-KOROSEAL-1.jpg", "2321-07": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-ON-WATER_WINTER-RIVER2321-03_ROGER-THOMAS-FOR-KOROSEAL-1.jpg", "2321-08": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-ON-WATER_WINTER-RIVER2321-03_ROGER-THOMAS-FOR-KOROSEAL-1.jpg"}, "mfr_prefix": null, "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new", "cover_only": true, "backfilled": true}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/rammed-earth-wallpapers/", "pattern": "Rammed Earth", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["CL09-01", "CL09-02", "CL09-03", "CL09-04", "CL09-05", "CL09-06", "CL09-07", "CL09-08"], "colorway_count": 8, "sku_images": {"CL09-01": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/CL09-01.jpg", "CL09-02": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/CL09-02.jpg", "CL09-03": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/CL09-03.jpg", "CL09-04": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/CL09-04.jpg", "CL09-05": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/CL09-05.jpg", "CL09-06": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/CL09-06.jpg", "CL09-07": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/CL09-07.jpg", "CL09-08": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/CL09-08.jpg"}, "mfr_prefix": "CL", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new", "backfilled": true}
-{"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/sunset-park-wallpapers/", "pattern": "Sunset Park", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": [], "colorway_count": 0, "sku_images": {}, "mfr_prefix": null, "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
-{"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/weathered-alloy-wallpapers/", "pattern": "Weathered Alloy", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": [], "colorway_count": 0, "sku_images": {}, "mfr_prefix": null, "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
+{"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/sunset-park-wallpapers/", "pattern": "Sunset Park", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["SG24-01", "SG24-02", "SG24-03", "SG24-04", "SG24-05", "SG24-06", "SG24-07", "SG24-08", "SG24-09", "SG24-10", "SG24-11", "SG24-12"], "colorway_count": 12, "sku_images": {"SG24-01": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-SUNSET-PARK_SAGESG24-03_SGNY-FOR-KOROSEAL-1.jpg", "SG24-02": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-SUNSET-PARK_SAGESG24-03_SGNY-FOR-KOROSEAL-1.jpg", "SG24-03": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-SUNSET-PARK_SAGESG24-03_SGNY-FOR-KOROSEAL-1.jpg", "SG24-04": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-SUNSET-PARK_SAGESG24-03_SGNY-FOR-KOROSEAL-1.jpg", "SG24-05": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-SUNSET-PARK_SAGESG24-03_SGNY-FOR-KOROSEAL-1.jpg", "SG24-06": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-SUNSET-PARK_SAGESG24-03_SGNY-FOR-KOROSEAL-1.jpg", "SG24-07": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-SUNSET-PARK_SAGESG24-03_SGNY-FOR-KOROSEAL-1.jpg", "SG24-08": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-SUNSET-PARK_SAGESG24-03_SGNY-FOR-KOROSEAL-1.jpg", "SG24-09": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-SUNSET-PARK_SAGESG24-03_SGNY-FOR-KOROSEAL-1.jpg", "SG24-10": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-SUNSET-PARK_SAGESG24-03_SGNY-FOR-KOROSEAL-1.jpg", "SG24-11": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-SUNSET-PARK_SAGESG24-03_SGNY-FOR-KOROSEAL-1.jpg", "SG24-12": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-SUNSET-PARK_SAGESG24-03_SGNY-FOR-KOROSEAL-1.jpg"}, "mfr_prefix": "SG", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new", "cover_only": true, "backfilled": true}
+{"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/weathered-alloy-wallpapers/", "pattern": "Weathered Alloy", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["CL08-01", "CL08-02", "CL08-03", "CL08-04", "CL08-05", "CL08-06", "CL08-07", "CL08-08"], "colorway_count": 8, "sku_images": {"CL08-01": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-WEATHERED-ALLOY_THUNDERCL08-08_CLODAGH-FOR-KOROSEAL-2-1.jpg", "CL08-02": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-WEATHERED-ALLOY_THUNDERCL08-08_CLODAGH-FOR-KOROSEAL-2-1.jpg", "CL08-03": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-WEATHERED-ALLOY_THUNDERCL08-08_CLODAGH-FOR-KOROSEAL-2-1.jpg", "CL08-04": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-WEATHERED-ALLOY_THUNDERCL08-08_CLODAGH-FOR-KOROSEAL-2-1.jpg", "CL08-05": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-WEATHERED-ALLOY_THUNDERCL08-08_CLODAGH-FOR-KOROSEAL-2-1.jpg", "CL08-06": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-WEATHERED-ALLOY_THUNDERCL08-08_CLODAGH-FOR-KOROSEAL-2-1.jpg", "CL08-07": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-WEATHERED-ALLOY_THUNDERCL08-08_CLODAGH-FOR-KOROSEAL-2-1.jpg", "CL08-08": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/COVER-WEATHERED-ALLOY_THUNDERCL08-08_CLODAGH-FOR-KOROSEAL-2-1.jpg"}, "mfr_prefix": "CL", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new", "cover_only": true, "backfilled": true}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/stuyvesant-wallpapers/", "pattern": "Stuyvesant", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["399033"], "colorway_count": 1, "sku_images": {"399033": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2019/03/399033.jpg"}, "mfr_prefix": null, "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/cabrini-wallpapers_/", "pattern": "Cabrini", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["SG20-01", "SG20-02", "SG20-03", "SG20-04", "SG20-05", "SG20-06", "SG20-07", "SG20-08"], "colorway_count": 8, "sku_images": {"SG20-01": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SG20-01.jpg", "SG20-02": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SG20-02.jpg", "SG20-03": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SG20-03.jpg", "SG20-04": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SG20-04.jpg", "SG20-05": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SG20-05.jpg", "SG20-06": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SG20-06.jpg", "SG20-07": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SG20-07.jpg", "SG20-08": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SG20-08.jpg"}, "mfr_prefix": "SG", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new", "backfilled": true}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/sp-2023-25-wallpapers/", "pattern": "SP 2023-25", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["SP9701", "SP9702", "SP9703", "SP9704", "SP9705", "SP9706", "SP9707", "SP9708", "SP9709", "SP9710", "SP9711", "SP9712", "SP9713", "SP9714", "SP9715", "SP9716", "SP9717", "SP9718", "SP9719", "SP9720", "SP9721", "SP9722", "SP9723", "SP9724", "SP9725", "SP9726", "SP9727", "SP9728", "SP9729", "SP9730", "SP9731", "SP9732", "SP9733", "SP9734", "SP9735", "SP9736", "SP9737", "SP9738", "SP9739", "SP9740", "SP9741", "SP9742", "SP9743", "SP9744", "SP9745", "SP9746", "SP9747", "SP9748", "SP9749", "SP9750", "SP9751", "SP9752", "SP9753", "SP9754", "SP9755", "SP9756", "SP9757", "SP9758", "SP9759", "SP9760", "SP9761", "SP9762", "SP9763", "SP9764", "SP9765", "SP9766", "SP9767", "SP9768", "SP9769", "SP9770", "SP9771", "SP9772"], "colorway_count": 72, "sku_images": {"SP9701": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9701.jpg", "SP9702": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9702.jpg", "SP9703": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9703.jpg", "SP9704": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9704.jpg", "SP9705": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9705.jpg", "SP9706": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9706.jpg", "SP9707": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9707.jpg", "SP9708": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9708.jpg", "SP9709": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9709.jpg", "SP9710": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9710.jpg", "SP9711": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9711.jpg", "SP9712": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9712.jpg", "SP9713": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9713.jpg", "SP9714": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9714.jpg", "SP9715": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9715.jpg", "SP9716": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9716.jpg", "SP9717": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9717.jpg", "SP9718": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9718.jpg", "SP9719": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9719.jpg", "SP9720": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9720.jpg", "SP9721": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9721.jpg", "SP9722": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9722.jpg", "SP9723": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9723.jpg", "SP9724": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9724.jpg", "SP9725": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9725.jpg", "SP9726": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9726.jpg", "SP9727": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9727.jpg", "SP9728": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9728.jpg", "SP9729": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9729.jpg", "SP9730": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9730.jpg", "SP9731": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9731.jpg", "SP9732": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9732.jpg", "SP9733": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9733.jpg", "SP9734": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9734.jpg", "SP9735": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9735.jpg", "SP9736": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9736.jpg", "SP9737": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9737.jpg", "SP9738": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9738.jpg", "SP9739": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9739.jpg", "SP9740": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9740.jpg", "SP9741": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9741.jpg", "SP9742": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9742.jpg", "SP9743": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9743.jpg", "SP9744": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9744.jpg", "SP9745": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9745.jpg", "SP9746": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/01/SP9746.jpg", "SP9747": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9747.jpg", "SP9748": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9748.jpg", "SP9749": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9749.jpg", "SP9750": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9750.jpg", "SP9751": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9751.jpg", "SP9752": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9752.jpg", "SP9753": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9753.jpg", "SP9754": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9754.jpg", "SP9755": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9755.jpg", "SP9756": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9756.jpg", "SP9757": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9757.jpg", "SP9758": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9758.jpg", "SP9759": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9759.jpg", "SP9760": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9760.jpg", "SP9761": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9761.jpg", "SP9762": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9762.jpg", "SP9763": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9763.jpg", "SP9764": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9764.jpg", "SP9765": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9765.jpg", "SP9766": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9766.jpg", "SP9767": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9767.jpg", "SP9768": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9768.jpg", "SP9769": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9769.jpg", "SP9770": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9770.jpg", "SP9771": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9771.jpg", "SP9772": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/07/SP9772.jpg"}, "mfr_prefix": "SP", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
@@ -514,7 +514,7 @@
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/echo-ridge-wallpapers/", "pattern": "Echo Ridge", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["AZ53820", "AZ53821", "AZ53822", "AZ53823", "AZ53824", "AZ53825", "AZ53826", "AZ53827"], "colorway_count": 8, "sku_images": {"AZ53820": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/AZ53820.jpg", "AZ53821": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/AZ53821.jpg", "AZ53822": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/AZ53822.jpg", "AZ53823": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/AZ53823.jpg", "AZ53824": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/AZ53824.jpg", "AZ53825": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/AZ53825.jpg", "AZ53826": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/AZ53826.jpg", "AZ53827": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/AZ53827.jpg"}, "mfr_prefix": "AZ", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/residential-wallcovering/heritage-wood-ii-wallpapers/", "pattern": null, "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["HW30-01", "HW30-02", "HW30-03", "HW30-04", "HW30-05", "HW30-06", "HW30-07", "HW30-08", "HW30-09", "HW30-31", "HW30-39", "HW30-94", "HW30-97"], "colorway_count": 13, "sku_images": {"HW30-01": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/HW30-01.jpg", "HW30-02": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/HW30-02.jpg", "HW30-03": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/HW30-03.jpg", "HW30-04": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/HW30-04.jpg", "HW30-05": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/HW30-05.jpg", "HW30-06": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/HW30-06.jpg", "HW30-07": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/HW30-07.jpg", "HW30-08": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/HW30-08.jpg", "HW30-09": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/HW30-09.jpg", "HW30-31": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/HW30-31.jpg", "HW30-39": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/HW30-39.jpg", "HW30-94": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/HW30-94.jpg", "HW30-97": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/HW30-97.jpg"}, "mfr_prefix": "HW", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new", "backfilled": true}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/authenticity-wallpaper/", "pattern": "Authenticity", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["391513"], "colorway_count": 1, "sku_images": {"391513": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2019/09/391513.jpg"}, "mfr_prefix": null, "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
-{"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/timberline-ii-wallpaper/", "pattern": "Timberline II", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": [], "colorway_count": 0, "sku_images": {}, "mfr_prefix": null, "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
+{"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/timberline-ii-wallpaper/", "pattern": "Timberline II", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["T123-01", "T123-02", "T123-03", "T123-04", "T123-05", "T123-06", "T123-07", "T123-09", "T123-10", "T123-11", "T123-13", "T123-14", "T123-16", "T123-42", "T123-44", "T123-46", "T123-48", "T123-50", "T123-95", "T123-99"], "colorway_count": 20, "sku_images": {"T123-01": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-02": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-03": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-04": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-05": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-06": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-07": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-09": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-10": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-11": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-13": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-14": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-16": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-42": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-44": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-46": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-48": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-50": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-95": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg", "T123-99": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/08/TIMBERLINE-1.jpg"}, "mfr_prefix": "T", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new", "cover_only": true, "backfilled": true}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/edition-wallpapers/", "pattern": "Edition", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["ED2002", "ED2003", "ED2004", "ED2009", "ED2016", "ED2019", "ED2021", "ED2506", "ED2512", "ED2520", "ED2523", "ED2524", "ED2525", "ED2526", "ED3001", "ED3003", "ED3006", "ED3012", "ED3014", "ED3016", "ED3017", "ED3018", "ED3019", "ED3021", "ED3022", "ED3023", "ED3025", "ED3026", "ED4001", "ED4002", "ED4003", "ED4004", "ED4005", "ED4006", "ED4007", "ED6011", "ED6012", "ED6013", "ED6014", "ED6015", "ED6024", "ED6040", "ED6052", "ED6053", "ED6054", "ED6055", "ED6056", "ED6057", "ED6058", "ED7001", "ED7002", "ED7003", "ED7004", "ED7005", "ED7006", "ED7007", "ED7008", "ED7009", "ED7010", "ED7011", "ED7012", "ED7013", "ED7014", "ED9003", "ED9004", "ED9005", "ED9006", "ED9013", "ED9015", "ED9016", "ED9017", "ED9018", "ED9508", "ED9509", "ED9510", "ED9511", "ED9512"], "colorway_count": 77, "sku_images": {"ED2002": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED2002.jpg", "ED2003": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED2003.jpg", "ED2004": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED2004.jpg", "ED2009": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED2009.jpg", "ED2016": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED2016.jpg", "ED2019": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED2019.jpg", "ED2021": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED2021.jpg", "ED2506": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED2506.jpg", "ED2512": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED2512.jpg", "ED2520": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED2520.jpg", "ED3003": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED3003.jpg", "ED3023": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED3023.jpg", "ED6058": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED6058.jpg", "ED7001": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED7001.jpg", "ED7002": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED7002.jpg", "ED7003": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED7003.jpg", "ED7004": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED7004.jpg", "ED7005": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED7005.jpg", "ED7006": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED7006.jpg", "ED7007": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED7007.jpg", "ED7008": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED7008.jpg", "ED7009": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED7009.jpg", "ED7010": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED7010.jpg", "ED7011": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED7011.jpg", "ED7012": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED7012.jpg", "ED7013": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED7013.jpg", "ED7014": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED7014.jpg", "ED9003": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED9003.jpg", "ED9004": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED9004.jpg", "ED9005": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED9005.jpg", "ED9006": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED9006.jpg", "ED9013": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED9013.jpg", "ED9015": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED9015.jpg", "ED9016": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED9016.jpg", "ED9017": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED9017.jpg", "ED9018": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED9018.jpg", "ED9508": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED9508.jpg", "ED9509": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED9509.jpg", "ED9510": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED9510.jpg", "ED9511": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED9511.jpg", "ED9512": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/09/ED9512.jpg"}, "mfr_prefix": "ED", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/hospitality-wallcovering/sensory-wallpapers/", "pattern": "Sensory", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": true}, "colorway_skus": ["340310", "340311", "340312", "340313", "340314", "340315", "340320", "340321", "340322", "340323", "340324", "340330", "340331", "340332", "340333", "340334", "340335", "340337", "340340", "340341", "340342", "340343", "340344", "340346", "340347", "340348", "340351", "340352", "340353", "340354", "340360", "340361", "340362", "340363", "340364", "340365", "340370", "340371", "340372"], "colorway_count": 39, "sku_images": {}, "mfr_prefix": null, "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/hospitality-wallcovering/groovy-wallpeprs/", "pattern": "Groovy", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": true, "is_metallic": false}, "colorway_skus": ["340510", "340511", "340512", "340513", "340514", "340515", "340520", "340521", "340522", "340525", "340530", "340531", "340532", "340533", "340534", "340535", "340540", "340541", "340542", "340544", "340545", "340550", "340551", "340552", "340553", "340554", "340555", "340560", "340561", "340562", "340563", "340564", "340565", "340570", "340571", "340572", "340573", "340580", "340581", "340582", "340583"], "colorway_count": 41, "sku_images": {"340510": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340510.jpg", "340511": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340511.jpg", "340512": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340512.jpg", "340513": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340513.jpg", "340514": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340514.jpg", "340515": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340515.jpg", "340520": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340520.jpg", "340521": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340521.jpg", "340522": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340522.jpg", "340525": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340525.jpg", "340530": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340530.jpg", "340531": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340531.jpg", "340532": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340532.jpg", "340533": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340533.jpg", "340534": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340534.jpg", "340535": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340535.jpg", "340540": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340540.jpg", "340541": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340541.jpg", "340542": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340542.jpg", "340544": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340544.jpg", "340545": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340545.jpg", "340550": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340550.jpg", "340551": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340551.jpg", "340552": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340552.jpg", "340553": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340553.jpg", "340554": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340554.jpg", "340555": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340555.jpg", "340560": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340560.jpg", "340561": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340561.jpg", "340562": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340562.jpg", "340563": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340563.jpg", "340564": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340564.jpg", "340565": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340565.jpg", "340570": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340570.jpg", "340571": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340571.jpg", "340572": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340572.jpg", "340573": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340573.jpg", "340580": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340580.jpg", "340581": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340581.jpg", "340582": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340582.jpg", "340583": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2024/10/340583.jpg"}, "mfr_prefix": null, "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
@@ -588,11 +588,11 @@
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/solution-wall-2025-28-wallpaper/", "pattern": "Solution Wall 2025-28", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["TW1000", "TW2000", "TWP2001"], "colorway_count": 3, "sku_images": {"K400": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K400.jpg", "K401": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K401.jpg", "K402": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K402.jpg", "K404": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K404.jpg", "K407": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K407.jpg", "K408": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K408.jpg", "K409": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K409.jpg", "K411": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K411.jpg", "K412": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K412.jpg", "K413": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K413.jpg", "K451": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K451.jpg", "K452": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K452.jpg", "K453": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K453.jpg", "K454": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K454.jpg", "K651": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K651.jpg", "SRJ211": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/SRJ211.jpg", "SRJ212": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/SRJ212.jpg", "SRJ213": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/SRJ213.jpg", "SRJ214": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/SRJ214.jpg", "SRJ215": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/SRJ215.jpg", "SRJ216": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/SRJ216.jpg", "SRJ251": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/SRJ251.jpg", "SRJ252": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/SRJ252.jpg", "SRJ253": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/SRJ253.jpg", "TW1000": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/06/TW1000.jpg", "TW2000": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2023/06/TW2000.jpg", "TWP2001": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TWP2001.jpg"}, "mfr_prefix": "TW", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/faith-2025-28-wallpaper_/", "pattern": "Faith 2025-28 Wallpaper_", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["HF3001", "HF3002", "HF3004", "HF3005", "HF3006", "HF3012", "HF3013", "HF3015", "HF3016", "HF3018", "HF3019", "HF3020", "HF3021", "HF3022", "HF3023", "HF3024", "HF3025", "HF3026", "HF3027", "HF3028", "HF3029", "HF3037", "HF3038", "HF3039", "HF3040", "HF3041", "HF3042", "HF3043", "HF3044", "HF3045", "HF3068", "HF3072", "HF3080", "HF3101", "HF3102", "HF3103", "HF3104", "HF3113", "HF3119", "HF3120", "HF3121", "HF3122", "HF3123", "HF3124", "K3511", "K3512", "K5011", "K5012", "K5021", "K5022", "K5031", "K5032", "K5051", "K5052", "K5061", "K5062", "K5111", "K5112", "K5121", "K5122", "K5151", "K5152", "K5171", "K5172", "K5181", "K5182", "K6011", "K6012", "K6021", "K6022", "K6031", "K6032", "K6131", "K6132", "K6141", "K6142", "TH34001", "TH34002", "TH34003", "TH34004", "TH34005", "TH34006", "TH34007", "TH34008", "TH34009", "TH34010", "TH34011", "TH34012", "TH34013", "TH34014", "TH34015", "TH34016", "TH34017", "TH34018", "TH34019", "TH34020", "TH34021", "TH34022", "TH34023", "TH34024", "TH34025", "TH34026", "TH34027", "TH34028", "TH34029", "TH34030", "TH34031", "TH34032", "TH34033", "TH34034", "TH34035", "TH34036", "TH34037", "TH34038", "TH34039", "TH34040", "TH34041", "TH34042", "TH34043", "TH34044", "TH34045", "TH34046", "TH34047", "TH34048", "TH34049", "TH34050", "TH34051", "TH34052", "TH34053", "TH34054", "TH34055", "TH34056", "TH34057", "TH34058", "TH34059", "TH34060", "TH34061", "TH34062", "TH34063", "TH34064", "TH34065", "TH34071", "TH34072", "TH34073", "TH34074", "TH34075", "TH34076", "TH34077", "TH34078", "TH34079", "TH34080", "TH34081", "TH34082", "TH34083", "TH34084", "TH34085", "TH34086", "TH34087", "TH34088", "TH34089", "TH34090", "TH34091", "TH34092", "TH34093", "TH34094", "TH34095", "TH34096", "TH34097", "TH34098", "TH34099", "TH34100", "TH34101", "TH34102", "TH34103", "TH34104", "TH34105", "TH34106", "TH34107", "TH34108", "TH34109", "TH34110", "TH34111", "TH34112", "TH34113", "TH34114", "TH34115", "TH34116", "TH34117", "TH34118", "TH34119", "TH34120", "TH34121", "TH34122", "TH34123", "TH34124", "TH34125", "TH34126", "TH34131", "TH34132", "TH34133", "TH34134", "TH34135", "TH34136", "TH34137", "TH34138", "TH34139", "TH34140", "TH34141", "TH34142", "TH34143", "TH34144", "TH34145", "TH34146", "TH34147", "TH34148", "TH34149", "TH34150", "TH34151", "TH34152", "TH34153", "TH34154", "TH34155", "TH34156", "TH34157", "TH34158", "TH34159", "TH34160", "TH34161", "TH34162", "TH34163", "TH34164", "TH34165", "TH34166", "TH34167", "TH34168", "TH34169", "TH34170", "TH34171", "TH34172", "TH34173", "TH34174", "TH34175", "TH34176", "TH34177", "TH34178", "TH34179", "TH34180", "TH34181", "TH34182", "TH34183", "TH34184", "TH34185", "TH34186", "TH34187", "TH34188", "TH34189", "TH34190", "TH34191", "TH34192", "TH34193", "TH34194", "TH34201", "TH34202", "TH34203", "TH34204", "TH34205", "TH34206", "TH34207", "TH34208", "TH34209", "TH34210", "TH34211", "TH34212", "TH34213", "TH34214", "TH34215", "TH34221", "TH34222", "TH34223", "TH34224", "TH34225", "TH34226", "TH34227", "TH34228", "TH34231", "TH34232", "TH34233", "TH34234", "TH34235", "TH34236", "TH34237", "TH34238", "TH34239", "TH34240", "TH34241", "TH34242", "TH34243", "TH34244", "TH34245", "TH34246", "TH34247", "TH34248", "TH34249", "TH34250", "TH34251", "TH34252", "TH34253", "TH34254", "TH34255", "TH34256", "TH34257", "TH34258", "TH34259", "TH34260", "TH34261", "TH34960", "TH34961", "TH34962", "TH34963", "TH34964", "TH34965", "TH34966", "TH34967", "TH34968", "TH34969", "TH34970", "TH34971", "TH34972", "TH34973", "TH34974", "TH34975", "TH34976", "TH34977", "TH34978", "TH34979", "TH34980", "TH34981", "TH34982", "TH34983", "TH34984", "TH34985", "TH34986", "TH34987", "THB1901", "THB1902", "THB1903", "THB1904", "THB1905", "THB1906", "THB1907", "THB1908", "THB1909", "THB1910", "THB1911", "THB1912", "THB1913", "THB1914", "THB1915", "THB1916", "THB1917", "THB1918", "THB1919", "THB1920", "THB1921", "THB1922", "THB1923", "THB1924", "THB1925", "THB1926", "THB1931", "THB1932"], "colorway_count": 371, "sku_images": {"ECH101": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/ECH101.jpg", "ECH102": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/ECH102.jpg", "ECH103": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/ECH103.jpg", "ECH201": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/ECH201.jpg", "ECH202": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/ECH202.jpg", "ECH203": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/ECH203.jpg", "K302": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K302.jpg", "K303": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K303.jpg", "K304": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K304.jpg", "K308": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K308.jpg", "K3511": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K3511.jpg", "K3512": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K3512.jpg", "K5011": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5011.jpg", "K5012": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5012.jpg", "K5021": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5021.jpg", "K5022": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5022.jpg", "K5031": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5031.jpg", "K5032": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5032.jpg", "K5051": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5051.jpg", "K5052": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5052.jpg", "K5061": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5061.jpg", "K5062": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5062.jpg", "K5111": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5111.jpg", "K5112": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5112.jpg", "K5121": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5121.jpg", "K5122": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5122.jpg", "K5151": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5151.jpg", "K5152": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5152.jpg", "K5171": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5171.jpg", "K5172": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5172.jpg", "K5181": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5181.jpg", "K5182": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K5182.jpg", "K551": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K551.jpg", "K552": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K552.jpg", "K553": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K553.jpg", "K554": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K554.jpg", "K6011": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K6011.jpg", "K6012": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K6012.jpg", "K6021": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K6021.jpg", "K6022": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K6022.jpg", "K6031": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K6031.jpg", "K6032": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K6032.jpg", "K6131": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K6131.jpg", "K6132": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K6132.jpg", "K6141": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K6141.jpg", "K6142": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K6142.jpg", "K656": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K656.jpg", "K657": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/K657.jpg", "TH34960": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34960.jpg", "TH34961": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34961.jpg", "TH34962": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34962.jpg", "TH34963": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34963.jpg", "TH34964": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34964.jpg", "TH34965": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34965.jpg", "TH34966": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34966.jpg", "TH34967": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34967.jpg", "TH34968": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34968.jpg", "TH34969": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34969.jpg", "TH34970": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34970.jpg", "TH34971": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34971.jpg", "TH34972": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34972.jpg", "TH34973": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34973.jpg", "TH34974": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34974.jpg", "TH34975": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34975.jpg", "TH34976": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34976.jpg", "TH34977": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34977.jpg", "TH34978": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34978.jpg", "TH34979": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34979.jpg", "TH34980": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34980.jpg", "TH34981": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34981.jpg", "TH34982": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34982.jpg", "TH34983": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34983.jpg", "TH34984": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34984.jpg", "TH34985": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34985.jpg", "TH34986": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34986.jpg", "TH34987": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/TH34987.jpg", "THB1901": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1901.jpg", "THB1902": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1902.jpg", "THB1903": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1903.jpg", "THB1904": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1904.jpg", "THB1905": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1905.jpg", "THB1906": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1906.jpg", "THB1907": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1907.jpg", "THB1908": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1908.jpg", "THB1909": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1909.jpg", "THB1910": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1910.jpg", "THB1911": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1911.jpg", "THB1912": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1912.jpg", "THB1913": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1913.jpg", "THB1914": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1914.jpg", "THB1915": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1915.jpg", "THB1916": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1916.jpg", "THB1917": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1917.jpg", "THB1918": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1918.jpg", "THB1919": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1919.jpg", "THB1920": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1920.jpg", "THB1921": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1921.jpg", "THB1922": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1922.jpg", "THB1923": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1923.jpg", "THB1924": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1924.jpg", "THB1925": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1925.jpg", "THB1926": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1926.jpg", "THB1931": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1931.jpg", "THB1932": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2025/12/THB1932.jpg"}, "mfr_prefix": "HF", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/hospitality-wallcovering/baobab-wallpaper/", "pattern": "Baobab", "overview": null, "spec": {"width": null, "type": null, "weight": "15oz", "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["129-1001", "129-1002", "129-1003", "129-2004", "129-2005", "129-2006", "129-2007", "129-2008", "129-2009", "129-3010", "129-3011", "129-3012", "129-3013", "129-4014", "129-4015", "129-5017", "129-5018", "129-5019", "129-5020", "129-6021", "129-6022", "129-6023", "129-6024", "129-7030", "129-7031", "129-8042", "129-8043", "129-8044", "129-8045", "129-9046", "129-9048"], "colorway_count": 31, "sku_images": {"129-1001": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-1001.png", "129-1002": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-1002.png", "129-1003": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-1003.png", "129-2004": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-2004.png", "129-2005": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-2005.png", "129-2006": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-2006.png", "129-2007": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-2007.png", "129-2008": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-2008.png", "129-2009": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-2009.png", "129-3010": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-3010.png", "129-3011": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-3011.png", "129-3012": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-3012.png", "129-3013": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-3013.png", "129-4014": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-4014.png", "129-4015": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-4015.png", "129-5017": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-5017.png", "129-5018": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-5018.png", "129-5019": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-5019.png", "129-5020": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-5020.png", "129-6021": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-6021.png", "129-6022": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-6022.png", "129-6023": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-6023.png", "129-6024": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-6024.png", "129-7030": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-7030.png", "129-7031": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-7031.png", "129-8042": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-8042.png", "129-8043": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-8043.png", "129-8044": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-8044.png", "129-8045": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-8045.png", "129-9046": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/129-9046.png"}, "mfr_prefix": null, "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new", "backfilled": true}
-{"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/ammonite-wallpaper/", "pattern": "Ammonite", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": [], "colorway_count": 0, "sku_images": {}, "mfr_prefix": null, "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
+{"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/ammonite-wallpaper/", "pattern": "Ammonite", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["Ammonite-Amada", "Ammonite-Bani", "Ammonite-Barrani", "Ammonite-Luli", "Ammonite-Mallawi", "Ammonite-Oasis"], "colorway_count": 6, "sku_images": {"Ammonite-Amada": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Ammonite_Roomshot.jpg", "Ammonite-Bani": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Ammonite_Roomshot.jpg", "Ammonite-Barrani": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Ammonite_Roomshot.jpg", "Ammonite-Luli": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Ammonite_Roomshot.jpg", "Ammonite-Mallawi": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Ammonite_Roomshot.jpg", "Ammonite-Oasis": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Ammonite_Roomshot.jpg"}, "mfr_prefix": "Ammonite", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new", "cover_only": true, "backfilled": true}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/impression-wallpaper_/", "pattern": "Impression Wallpaper_", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["Impression-Camille", "Impression-Claude", "Impression-Degas", "Impression-Gustave", "Impression-Manet", "Impression-Sisley"], "colorway_count": 6, "sku_images": {"Impression-Camille": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Impression-Camille.jpg", "Impression-Claude": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Impression-Claude.jpg", "Impression-Degas": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Impression-Degas.jpg", "Impression-Gustave": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Impression-Gustave.jpg", "Impression-Manet": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Impression-Manet.jpg", "Impression-Sisley": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Impression-Sisley.jpg"}, "mfr_prefix": "Impression", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new", "backfilled": true}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/pocono-wallpaper/", "pattern": "Pocono", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["Pocono-Canovia", "Pocono-Fernshade", "Pocono-Highgrove", "Pocono-Luminara", "Pocono-Verdantia", "Pocono-Woodmere"], "colorway_count": 6, "sku_images": {"Pocono-Canovia": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Pocono-Canovia.jpg", "Pocono-Fernshade": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Pocono-Fernshade.jpg", "Pocono-Highgrove": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Pocono-Highgrove.jpg", "Pocono-Luminara": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Pocono-Luminara.jpg", "Pocono-Verdantia": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Pocono-Verdantia.jpg", "Pocono-Woodmere": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Pocono-Woodmere.jpg"}, "mfr_prefix": "Pocono", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new", "backfilled": true}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/rhythm-wallpaper/", "pattern": "Rhythm", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["Rhythm-Fluent", "Rhythm-Gradual", "Rhythm-Motion", "Rhythm-Passage", "Rhytym_-_Voyage"], "colorway_count": 5, "sku_images": {"Rhythm-Fluent": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Rhythm-Fluent.jpg", "Rhythm-Gradual": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Rhythm-Gradual.jpg", "Rhythm-Motion": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Rhythm-Motion.jpg", "Rhythm-Passage": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Rhythm-Passage.jpg", "Rhytym_-_Voyage": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Rhytym_-_Voyage.jpg"}, "mfr_prefix": "Rhythm", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new", "backfilled": true}
-{"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/unearthed-wallpaper/", "pattern": "Unearthed", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": true}, "colorway_skus": [], "colorway_count": 0, "sku_images": {}, "mfr_prefix": null, "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new"}
+{"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/unearthed-wallpaper/", "pattern": "Unearthed", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": true}, "colorway_skus": ["Unearthed-Annadale", "Unearthed-Ashburn", "Unearthed-Blackstone", "Unearthed-Chesapeake", "Unearthed-Roanoke", "Unearthed-Saluda", "Unearthed-Stone Ridge", "Unearthed-Woodburn"], "colorway_count": 8, "sku_images": {"Unearthed-Annadale": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Unearthed_Blackstone_Room_Comp-scaled-1.jpg", "Unearthed-Ashburn": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Unearthed_Blackstone_Room_Comp-scaled-1.jpg", "Unearthed-Blackstone": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Unearthed_Blackstone_Room_Comp-scaled-1.jpg", "Unearthed-Chesapeake": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Unearthed_Blackstone_Room_Comp-scaled-1.jpg", "Unearthed-Roanoke": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Unearthed_Blackstone_Room_Comp-scaled-1.jpg", "Unearthed-Saluda": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Unearthed_Blackstone_Room_Comp-scaled-1.jpg", "Unearthed-Stone Ridge": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Unearthed_Blackstone_Room_Comp-scaled-1.jpg", "Unearthed-Woodburn": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/Unearthed_Blackstone_Room_Comp-scaled-1.jpg"}, "mfr_prefix": "Unearthed", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new", "cover_only": true, "backfilled": true}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/kim-mupangilai-wallpaper/", "pattern": "Kim Mupangilaï", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["KIM21", "KIM22", "KIM23", "KIM24", "KIM31", "KIM32", "KIM33", "KIM34", "KIM41", "KIM42", "KIM43", "KIM44", "KIM51", "KIM52", "KIM61", "KIM62", "KIM63", "KIM64", "KIM65", "KIM66", "KIM71", "KIM72", "KIM81", "KIM91"], "colorway_count": 24, "sku_images": {"KIM21": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM21.jpg", "KIM22": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM22.jpg", "KIM23": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM23.jpg", "KIM24": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM24.jpg", "KIM31": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM31.jpg", "KIM32": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM32.jpg", "KIM33": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM33.jpg", "KIM34": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM34.jpg", "KIM41": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM41.jpg", "KIM42": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM42.jpg", "KIM43": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM43.jpg", "KIM44": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM44.jpg", "KIM51": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM51.jpg", "KIM52": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM52.jpg", "KIM61": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM61.jpg", "KIM62": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM62.jpg", "KIM63": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM63.jpg", "KIM64": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM64.jpg", "KIM65": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM65.jpg", "KIM66": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM66.jpg", "KIM71": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM71.jpg", "KIM72": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM72.jpg", "KIM81": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM81.jpg", "KIM91": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/KIM91.jpg"}, "mfr_prefix": "KIM", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new", "backfilled": true}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/commercial-wallcovering/mirari-wallpaper/", "pattern": "Mirari", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["MIR202", "MIR203", "MIR204", "MIR205", "MIR206", "MIR221", "MIR231", "MIR233", "MIR234", "MIR235", "MIR301", "MIR302", "MIR303", "MIR304", "MIR305", "MIR306", "MIR307", "MIR308", "MIR309", "MIR310", "MIR401", "MIR402", "MIR403", "MIR404", "MIR405", "MIR406", "MIR407", "MIR408", "MIR409", "MIR410", "MIR501", "MIR502", "MIR503", "MIR504", "MIR505", "MIR601", "MIR602", "MIR701", "MIR801", "MIR802", "MIR803", "MIR804", "MIR805", "MIR806", "MIR807"], "colorway_count": 45, "sku_images": {"MIR202": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR202.jpg", "MIR203": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR203.jpg", "MIR204": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR204.jpg", "MIR205": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR205.jpg", "MIR206": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR206.jpg", "MIR221": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR221.jpg", "MIR231": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR231.jpg", "MIR233": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR233.jpg", "MIR234": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR234.jpg", "MIR235": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR235.jpg", "MIR301": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR301.jpg", "MIR302": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR302.jpg", "MIR303": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR303.jpg", "MIR304": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR304.jpg", "MIR305": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR305.jpg", "MIR306": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR306.jpg", "MIR307": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR307.jpg", "MIR308": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR308.jpg", "MIR309": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR309.jpg", "MIR310": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR310.jpg", "MIR401": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR401.jpg", "MIR402": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR402.jpg", "MIR403": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR403.jpg", "MIR404": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR404.jpg", "MIR405": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR405.jpg", "MIR406": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR406.jpg", "MIR407": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR407.jpg", "MIR408": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR408.jpg", "MIR409": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR409.jpg", "MIR410": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/MIR410.jpg"}, "mfr_prefix": "MIR", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new", "backfilled": true}
 {"source": "sangetsu", "source_url": "https://www.sangetsu-goodrich.co.th/products/wallpaper-wallcovering/eco-friendly/stone_wallpaper/", "pattern": "Stone_Wallpaper", "overview": null, "spec": {"width": null, "type": null, "weight": null, "backing": null, "is_grasscloth": false, "is_metallic": false}, "colorway_skus": ["ST100", "ST101", "ST102", "ST103", "ST104", "ST105", "ST200", "ST201", "ST202", "ST203", "ST300", "ST301", "ST302", "ST400", "ST401", "ST402", "ST403", "ST404", "ST500", "ST501", "ST502", "ST503", "ST600", "ST601", "ST602", "ST603"], "colorway_count": 26, "sku_images": {"ST100": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST100.jpeg", "ST101": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST101.jpeg", "ST102": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST102.jpeg", "ST103": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST103.jpeg", "ST104": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST104.jpeg", "ST105": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST105.jpeg", "ST200": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST200.jpeg", "ST201": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST201.jpeg", "ST202": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST202.jpeg", "ST203": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST203.jpg", "ST300": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST300.jpeg", "ST301": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST301.jpeg", "ST302": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST302.jpeg", "ST400": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST400.jpeg", "ST401": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST401.jpeg", "ST402": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST402.jpeg", "ST403": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST403.jpg", "ST404": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST404.jpg", "ST500": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST500.jpeg", "ST501": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST501.jpg", "ST502": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST502.jpg", "ST503": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST503.jpeg", "ST600": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST600.jpeg", "ST601": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST601.jpg", "ST602": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST602.jpeg", "ST603": "https://www.sangetsu-goodrich.co.th/wp-content/uploads/2026/01/ST603.jpg"}, "mfr_prefix": "ST", "settlement_checked": false, "deduped": false, "cost_confirmed": false, "activation_ready": false, "status": "staged-for-new", "backfilled": true}

← 9f83f10 greenland: clean material facet — scope to fiber taxonomy, d  ·  back to Japan Enrich  ·  chore: lint (node -c + pyflakes clean), v0.3.0 (Greenland ch 0f42607 →