[object Object]

← back to Dw Catalog 3d

Frontend: L2 Active/Staged/Draft status filter chips + L0 vendor search box (filter towers + jump); clean U+FFFD mojibake in vendor display names

4f30f3d8bb70f1be39491e7cfe97ddb8c42340f6 · 2026-06-26 08:50:09 -0700 · Steve Abrams

Files touched

Diff

commit 4f30f3d8bb70f1be39491e7cfe97ddb8c42340f6
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Fri Jun 26 08:50:09 2026 -0700

    Frontend: L2 Active/Staged/Draft status filter chips + L0 vendor search box (filter towers + jump); clean U+FFFD mojibake in vendor display names
---
 gen.mjs                  | 17 ++++++---
 public/index.html        | 94 +++++++++++++++++++++++++++++++++++++++++++-----
 public/scene.json        |  2 +-
 public/v/_index.json     |  2 +-
 public/v/coordonn-2.json |  2 +-
 5 files changed, 101 insertions(+), 16 deletions(-)

diff --git a/gen.mjs b/gen.mjs
index 5bb9010..8635c32 100644
--- a/gen.mjs
+++ b/gen.mjs
@@ -35,6 +35,13 @@ function slugify(s) {
   return s.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-+|-+$/g, '');
 }
 
+// Cosmetic only: strip U+FFFD replacement chars left by upstream double-encoding
+// (e.g. a corrupted "Coordonné" row whose original bytes are already lost) so the
+// local viewer renders a clean string instead of mojibake boxes. Display-side only.
+function cleanName(s) {
+  return s.replace(/�/g, '').replace(/\s+/g, ' ').trim() || s;
+}
+
 function priceStr(retail, price) {
   const v = Number(retail) > 0 ? Number(retail) : (Number(price) > 0 ? Number(price) : 0);
   if (v <= 0) return '';
@@ -111,7 +118,8 @@ function uniqueSlug(vendor) {
 const scene = rollup.map(([vendor, active, draft, archived, deleted]) => {
   const slug = uniqueSlug(vendor);
   return {
-    vendor,
+    vendor: cleanName(vendor),
+    _rawVendor: vendor,
     active: Number(active) || 0,
     staged: stagedByVendor[vendor] || 0,
     draft: Number(draft) || 0,
@@ -121,7 +129,7 @@ const scene = rollup.map(([vendor, active, draft, archived, deleted]) => {
     slug,
   };
 });
-writeFileSync(join(PUB, 'scene.json'), JSON.stringify(scene));
+writeFileSync(join(PUB, 'scene.json'), JSON.stringify(scene.map(({ _rawVendor, ...rest }) => rest)));
 console.error(`scene.json: ${scene.length} vendors`);
 
 // ---------------------------------------------------------------------------
@@ -132,8 +140,9 @@ let totalDrillProducts = 0;
 let drillFiles = 0;
 
 for (const v of scene) {
-  const vendor = v.vendor;
-  const vsafe = vendor.replace(/'/g, "''");
+  const vendor = v.vendor;          // cleaned (display)
+  const rawVendor = v._rawVendor;   // raw (for SQL match)
+  const vsafe = rawVendor.replace(/'/g, "''");
   // pull ACTIVE+DRAFT products (prefer rows WITH images), capped at CAP_PROD_PER_VENDOR
   const rows = q(`
     SELECT title, coalesce(variant_sku, dw_sku, sku, ''), retail_price, price, handle, image_url, tags,
diff --git a/public/index.html b/public/index.html
index 7121dc4..6baaf07 100644
--- a/public/index.html
+++ b/public/index.html
@@ -40,6 +40,24 @@
   .dot{display:inline-block;width:8px;height:8px;border-radius:2px;margin-right:6px;vertical-align:middle}
   #loading{position:fixed;inset:0;display:none;align-items:center;justify-content:center;z-index:15;
     color:var(--gold);font-size:14px;letter-spacing:1px;pointer-events:none}
+  /* search box (under breadcrumb) */
+  #search{margin:8px 0 0;position:relative;pointer-events:auto;width:260px}
+  #search input{width:100%;background:var(--panel);backdrop-filter:blur(8px);border:1px solid #2A2F3A;
+    border-radius:9px;padding:7px 11px;color:var(--fg);font-size:13px;outline:none}
+  #search input:focus{border-color:var(--gold)}
+  #search input::placeholder{color:var(--muted)}
+  #sresults{position:absolute;top:36px;left:0;right:0;background:#0e1320f4;border:1px solid #2A2F3A;
+    border-radius:9px;max-height:300px;overflow:auto;display:none;z-index:30;box-shadow:0 8px 30px #000a}
+  #sresults div{padding:7px 11px;font-size:12.5px;cursor:pointer;border-bottom:1px solid #1d2230;display:flex;justify-content:space-between;gap:10px}
+  #sresults div:last-child{border-bottom:none} #sresults div:hover,#sresults div.sel{background:#1d2230}
+  #sresults div .vn{color:var(--fg);font-weight:600} #sresults div .vc{color:var(--muted);font-variant-numeric:tabular-nums}
+  /* L2 status filter chips */
+  #stchips{position:fixed;z-index:10;left:24px;bottom:96px;display:none;gap:7px}
+  #stchips button{background:var(--panel);backdrop-filter:blur(8px);border:1px solid #2A2F3A;color:var(--fg);
+    border-radius:20px;padding:6px 13px;font-size:12px;font-weight:600;cursor:pointer;display:flex;align-items:center;gap:7px}
+  #stchips button.off{opacity:.4}
+  #stchips button .d{width:9px;height:9px;border-radius:3px;box-shadow:0 0 7px currentColor}
+  #stchips button .n{font-variant-numeric:tabular-nums;color:var(--muted)}
 </style>
 </head>
 <body>
@@ -47,7 +65,12 @@
 <div id="title" class="hud">
   <h1>DESIGNER WALLCOVERINGS · <span class="g">LIVE 3D CATALOG</span></h1>
   <div id="crumb"></div>
+  <div id="search">
+    <input id="sinput" type="text" placeholder="Search vendors…" autocomplete="off" spellcheck="false"/>
+    <div id="sresults"></div>
+  </div>
 </div>
+<div id="stchips" class="hud"></div>
 <div id="legend" class="hud">
   <h3 id="legTitle">Status Layers</h3>
   <div id="rows"></div>
@@ -76,7 +99,10 @@ const LAYERS=[
 const HEX=k=>'#'+LAYERS.find(l=>l.key===k).color.toString(16).padStart(6,'0');
 const COLLCOLORS=[0xC8A24B,0x70AD47,0x5B9BD5,0xE0A33E,0xA569BD,0x1ABC9C,0xE74C3C,0x48A9C5,0xD4AC0D,0xE08E45];
 const visible=Object.fromEntries(LAYERS.map(l=>[l.key,true]));
-let scaleMode='log', DATA=[], state={level:0,vendor:null,vData:null,coll:null};
+// product-level status filter (L2): active / staged / draft
+const ST=[{key:'active',name:'Active',color:'#70AD47'},{key:'staged',name:'Staged',color:'#E0A33E'},{key:'draft',name:'Draft',color:'#5B9BD5'}];
+const stVisible={active:true,staged:true,draft:true};
+let scaleMode='log', DATA=[], vendorFilter='', state={level:0,vendor:null,vData:null,coll:null};
 
 const scene=new THREE.Scene();
 scene.background=new THREE.Color(0x0c0f15);
@@ -125,20 +151,23 @@ function clearWorld(){ world.clear(); picks=[]; }
 // ===================== LEVEL 0 : VENDORS =====================
 function renderVendors(){
   state={level:0,vendor:null,vData:null,coll:null}; clearWorld();
-  controls.autoRotate=true; legendStatus(); crumb();
+  controls.autoRotate=true; legendStatus(); crumb(); hideStChips();
   document.getElementById('back').style.display='none';
   const N=DATA.length,cols=Math.ceil(Math.sqrt(N)),gap=11;
+  const fq=vendorFilter;
   DATA.forEach((d,i)=>{
     const cx=(i%cols-(cols-1)/2)*gap, cz=(Math.floor(i/cols)-(Math.ceil(N/cols)-1)/2)*gap;
+    const match=!fq||d.vendor.toLowerCase().includes(fq);
+    const op=match?.88:.10, eop=match?.5:.10, emi=match?.32:.05;
     let y=0;
     LAYERS.forEach(L=>{ const val=d[L.key]||0; if(val<=0||!visible[L.key])return;
       const h=Math.max(scaleFn(val),0.12);
       const m=new THREE.Mesh(new THREE.BoxGeometry(5.4,h,5.4),
-        new THREE.MeshStandardMaterial({color:L.color,emissive:L.color,emissiveIntensity:.32,metalness:.3,roughness:.45,transparent:true,opacity:.88}));
-      m.position.set(cx,y+h/2,cz); m.userData={kind:'vendor',d}; world.add(m); picks.push(m);
-      const eg=new THREE.LineSegments(new THREE.EdgesGeometry(m.geometry),new THREE.LineBasicMaterial({color:L.color,transparent:true,opacity:.5}));
+        new THREE.MeshStandardMaterial({color:L.color,emissive:L.color,emissiveIntensity:emi,metalness:.3,roughness:.45,transparent:true,opacity:op}));
+      m.position.set(cx,y+h/2,cz); m.userData={kind:'vendor',d}; world.add(m); if(match)picks.push(m);
+      const eg=new THREE.LineSegments(new THREE.EdgesGeometry(m.geometry),new THREE.LineBasicMaterial({color:L.color,transparent:true,opacity:eop}));
       eg.position.copy(m.position); world.add(eg); y+=h+0.04; });
-    const lab=label(d.vendor); lab.position.set(cx,y+1.8,cz); lab.userData={kind:'vendor',d}; world.add(lab);
+    if(match){ const lab=label(d.vendor); lab.position.set(cx,y+1.8,cz); lab.userData={kind:'vendor',d}; world.add(lab); }
   });
   flyTo([58,46,74],[0,7,0]);
 }
@@ -151,7 +180,7 @@ async function drillVendor(d){
   catch(e){ loading(false); return; }
   loading(false);
   state={level:1,vendor:d,vData:v,coll:null}; clearWorld();
-  controls.autoRotate=false; legendCollections(v); crumb();
+  controls.autoRotate=false; legendCollections(v); crumb(); hideStChips();
   document.getElementById('back').style.display='block';
   const cs=v.collections, N=cs.length, R=Math.max(12,N*1.6);
   const maxc=Math.max(...cs.map(c=>c.count));
@@ -177,8 +206,9 @@ async function drillVendor(d){
 // ===================== LEVEL 2 : PRODUCTS =====================
 function drillCollection(cobj){
   state.level=2; state.coll=cobj; clearWorld();
-  controls.autoRotate=false; legendCollections(state.vData,cobj); crumb();
-  const prods=cobj.products, N=prods.length, cols=Math.ceil(Math.sqrt(N)), gap=4.4;
+  controls.autoRotate=false; legendCollections(state.vData,cobj); crumb(); renderStChips();
+  // filter products by the enabled status chips
+  const prods=cobj.products.filter(p=>stVisible[(p.st||'active')]), N=prods.length, cols=Math.max(1,Math.ceil(Math.sqrt(N))), gap=4.4;
   const fallback=new THREE.MeshStandardMaterial({color:0x222a38,emissive:0x141a26,roughness:.7});
   prods.forEach((p,i)=>{
     const cx=(i%cols-(cols-1)/2)*gap, cy=(Math.floor(i/cols))*gap*-1+ (Math.ceil(N/cols))*gap/2;
@@ -215,6 +245,25 @@ function legendCollections(v,active){
     el.innerHTML=`<span class="sw" style="background:${col};color:${col}"></span><span class="nm">${c.name}</span><span class="ct">${c.count}</span>`;
     el.onclick=()=>drillCollection(c); rows.appendChild(el); });
 }
+// L2 product status filter chips
+function renderStChips(){
+  const bar=document.getElementById('stchips');
+  if(state.level!==2||!state.coll){ bar.style.display='none'; return; }
+  bar.style.display='flex';
+  const prods=state.coll.products||[];
+  bar.innerHTML=ST.map(s=>{
+    const n=prods.filter(p=>(p.st||'active')===s.key).length;
+    return `<button data-st="${s.key}" class="${stVisible[s.key]?'':'off'}">`+
+      `<span class="d" style="background:${s.color};color:${s.color}"></span>${s.name} <span class="n">${n}</span></button>`;
+  }).join('');
+  bar.querySelectorAll('button').forEach(b=>b.onclick=()=>{
+    const k=b.dataset.st; stVisible[k]=!stVisible[k];
+    // never let all three be off — re-enable if user turned the last one off
+    if(!ST.some(s=>stVisible[s.key])) stVisible[k]=true;
+    drillCollection(state.coll);
+  });
+}
+function hideStChips(){ document.getElementById('stchips').style.display='none'; }
 function crumb(){
   const c=document.getElementById('crumb'); const s='<span class="sep">›</span>';
   let h=`<a onclick="window.__home()">All Vendors</a>`;
@@ -266,6 +315,33 @@ document.querySelectorAll('#scaleToggle button').forEach(b=>b.onclick=()=>{
   b.classList.add('sel'); scaleMode=b.dataset.s; if(state.level===0)renderVendors(); });
 function loading(on){document.getElementById('loading').style.display=on?'flex':'none';}
 
+// ---- search: filter L0 towers + jump to a vendor by name ----
+const sinput=document.getElementById('sinput'), sresults=document.getElementById('sresults');
+function searchMatches(q){ q=q.trim().toLowerCase(); if(!q)return[];
+  return DATA.filter(d=>d.vendor.toLowerCase().includes(q)).slice(0,20); }
+function showResults(list){
+  if(!list.length){ sresults.style.display='none'; sresults.innerHTML=''; return; }
+  sresults.innerHTML=list.map((d,i)=>`<div data-slug="${d.slug}" class="${i===0?'sel':''}"><span class="vn">${d.vendor}</span><span class="vc">${(d.active||0).toLocaleString()}</span></div>`).join('');
+  sresults.style.display='block';
+  sresults.querySelectorAll('div').forEach(el=>el.onclick=()=>jumpTo(el.dataset.slug));
+}
+function jumpTo(slug){ const d=DATA.find(x=>x.slug===slug); if(!d)return;
+  sinput.value=d.vendor; sresults.style.display='none'; vendorFilter=''; if(state.level===0)renderVendors();
+  drillVendor(d); }
+sinput.addEventListener('input',()=>{ const q=sinput.value;
+  vendorFilter=q.trim().toLowerCase();
+  showResults(searchMatches(q));
+  if(state.level===0) renderVendors();   // filter towers live
+});
+sinput.addEventListener('keydown',e=>{
+  const items=[...sresults.querySelectorAll('div')]; let i=items.findIndex(x=>x.classList.contains('sel'));
+  if(e.key==='ArrowDown'){ e.preventDefault(); if(items[i])items[i].classList.remove('sel'); i=Math.min(items.length-1,i+1); if(items[i])items[i].classList.add('sel'); }
+  else if(e.key==='ArrowUp'){ e.preventDefault(); if(items[i])items[i].classList.remove('sel'); i=Math.max(0,i-1); if(items[i])items[i].classList.add('sel'); }
+  else if(e.key==='Enter'){ const sel=sresults.querySelector('div.sel')||items[0]; if(sel)jumpTo(sel.dataset.slug); }
+  else if(e.key==='Escape'){ sinput.value=''; vendorFilter=''; sresults.style.display='none'; if(state.level===0)renderVendors(); sinput.blur(); }
+});
+document.addEventListener('click',e=>{ if(!document.getElementById('search').contains(e.target)) sresults.style.display='none'; });
+
 fetch('scene.json?_='+Date.now()).then(r=>r.json()).then(d=>{
   DATA=d.sort((a,b)=>(b.active+b.archived)-(a.active+a.archived)); renderVendors(); });
 
diff --git a/public/scene.json b/public/scene.json
index b3c8425..ba11f01 100644
--- a/public/scene.json
+++ b/public/scene.json
@@ -1 +1 @@
-[{"vendor":"Phillipe Romano","active":10446,"staged":3,"draft":3497,"archived":4909,"deleted":1835,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7900db261e1437eacc59640e29bf4b72.jpg?v=1745461030","slug":"phillipe-romano"},{"vendor":"Rebel Walls","active":3613,"staged":0,"draft":0,"archived":108,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/R12711_image2.jpg?v=1756329365","slug":"rebel-walls"},{"vendor":"Clarke And Clarke","active":3573,"staged":0,"draft":4,"archived":350,"deleted":170,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/F0063_02_CAC_86388dc7-1fcd-428f-8ed8-f19a05aced49.jpg?v=1725863790","slug":"clarke-and-clarke"},{"vendor":"Hollywood Wallcoverings","active":3155,"staged":0,"draft":52,"archived":2433,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dry-erase-it-light-goose-grey-sample-dry-erase-it-light-goose-grey-hollywood.jpg?v=1775710353","slug":"hollywood-wallcoverings"},{"vendor":"Brunschwig & Fils","active":2761,"staged":0,"draft":4,"archived":606,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/8012112_30_5ba8203c-9eaa-4f9c-8fbf-f3088e42c5e9.jpg?v=1725917772","slug":"brunschwig-fils"},{"vendor":"Malibu Wallpaper","active":2657,"staged":0,"draft":884,"archived":490,"deleted":15,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/85590af2b224fa39d0fa88363fb95a19.jpg?v=1572308930","slug":"malibu-wallpaper"},{"vendor":"Phillip Jeffries","active":2473,"staged":0,"draft":30,"archived":584,"deleted":1291,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ScreenShot2023-01-17at10.16.49AM.png?v=1673979422","slug":"phillip-jeffries"},{"vendor":"Koroseal","active":2351,"staged":233,"draft":1,"archived":196,"deleted":272,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/TAKUMI_TAK-AA01-01__FOIL__new.jpg?v=1739409068","slug":"koroseal"},{"vendor":"Schumacher","active":2340,"staged":0,"draft":50,"archived":2790,"deleted":17,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/5006051.jpg?v=1770834701","slug":"schumacher"},{"vendor":"Kravet","active":2227,"staged":4,"draft":0,"archived":2675,"deleted":2718,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-hotel_lobby-30787-100-0.jpg?v=1775089660","slug":"kravet"},{"vendor":"Lee Jofa","active":2152,"staged":0,"draft":3,"archived":1540,"deleted":187,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/2002172_16_7b7ef5af-9147-4edb-8745-9c0def206416.jpg?v=1726546752","slug":"lee-jofa"},{"vendor":"Gaston Y Daniela","active":2151,"staged":0,"draft":2,"archived":140,"deleted":11,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GDT1597_002.jpg?v=1725493906","slug":"gaston-y-daniela"},{"vendor":"Thibaut","active":2055,"staged":1143,"draft":713,"archived":1106,"deleted":66,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T10127_e4759337-cc46-42af-9fa0-9f205dcf5901.jpg?v=1781203444","slug":"thibaut"},{"vendor":"Los Angeles Fabrics","active":1840,"staged":0,"draft":1,"archived":525,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Anita-Olympic-1024x914.jpg?v=1773140675","slug":"los-angeles-fabrics"},{"vendor":"China Seas","active":1776,"staged":0,"draft":17,"archived":13,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/beiges-1643_1_201210.jpg?v=1781621005","slug":"china-seas"},{"vendor":"Designer Wallcoverings","active":1532,"staged":0,"draft":38,"archived":692,"deleted":140,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8a662e977e6dc37098454c433d4c586f.jpg?v=1572308908","slug":"designer-wallcoverings"},{"vendor":"Jeffrey Stevens","active":1498,"staged":0,"draft":7,"archived":2304,"deleted":4,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/108c5c5e93020df86f79d67064aac34b.jpg?v=1750789779","slug":"jeffrey-stevens"},{"vendor":"Coordonné","active":1319,"staged":0,"draft":5,"archived":6,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4fcaedc487f2eb0945685ff4338ae964.jpg?v=1739304074","slug":"coordonn"},{"vendor":"Cole & Son","active":1238,"staged":0,"draft":13,"archived":17,"deleted":49,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/100_1001_CS_cc8290a8-cd72-478b-ad98-7cb39bf9b1f9.jpg?v=1753306833","slug":"cole-son"},{"vendor":"GP & J Baker","active":1197,"staged":0,"draft":0,"archived":688,"deleted":23,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BF10118_815_d6a05135-001c-444e-8162-ba560cba596e.jpg?v=1726156123","slug":"gp-j-baker"},{"vendor":"Mind the Gap","active":1134,"staged":0,"draft":6,"archived":121,"deleted":5,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/MESCALINE_494fae35-364f-4a53-957e-58373af160ef.jpg?v=1617223931","slug":"mind-the-gap"},{"vendor":"Scalamandre Wallpaper","active":966,"staged":0,"draft":2,"archived":185,"deleted":16,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d5337001dc49644243abe7e186cff5cf.jpg?v=1572309163","slug":"scalamandre-wallpaper"},{"vendor":"Osborne & Little","active":957,"staged":1,"draft":5,"archived":79,"deleted":9,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/w7192-08_1_462fc2c2-66ab-4aaa-87fb-eccfa2dfb3da.jpg?v=1586920884","slug":"osborne-little"},{"vendor":"DW Bespoke Studio","active":921,"staged":0,"draft":3,"archived":1407,"deleted":2632,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5443fe3757e94da5673c3886c1ad70d3.png?v=1572308907","slug":"dw-bespoke-studio"},{"vendor":"Designers Guild","active":853,"staged":0,"draft":2,"archived":24,"deleted":114,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/133029.jpg?v=1633560511","slug":"designers-guild"},{"vendor":"Versa Designed Surfaces","active":842,"staged":0,"draft":0,"archived":42,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Brio_A119-038-Earl_Grey.jpg?v=1773813795","slug":"versa-designed-surfaces"},{"vendor":"Anna French","active":814,"staged":608,"draft":5,"archived":289,"deleted":14,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f6586a2b0ba408e8f719f74ce52d9f91_6f6911c4-36e9-4199-9d5d-a70aa7dd97c3.jpg?v=1572309282","slug":"anna-french"},{"vendor":"Sandberg","active":769,"staged":0,"draft":2,"archived":220,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/101-16_image1.jpg?v=1756388593","slug":"sandberg"},{"vendor":"Surface Stick","active":743,"staged":0,"draft":8,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/49ced0ab6c98f97f5d55709a3ee043d5.jpg?v=1572309620","slug":"surface-stick"},{"vendor":"PS Removable Wallpaper","active":736,"staged":0,"draft":0,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SG10002_69111bea-bf30-4fe1-af67-72fd2260b1fd.jpg?v=1748377510","slug":"ps-removable-wallpaper"},{"vendor":"Wolf Gordon","active":688,"staged":0,"draft":68,"archived":771,"deleted":21,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/act-5065.jpg?v=1762357730","slug":"wolf-gordon"},{"vendor":"Maya Romanoff","active":624,"staged":0,"draft":5,"archived":61,"deleted":224,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mr-abh-1109-Maya_Romanoff_1.jpg?v=1738861849","slug":"maya-romanoff"},{"vendor":"Harlequin","active":583,"staged":0,"draft":0,"archived":3,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/HC4W113002.jpg?v=1739493282","slug":"harlequin"},{"vendor":"Tres Tintas","active":577,"staged":0,"draft":0,"archived":0,"deleted":12,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/M2910-3_product.jpg?v=1756311980","slug":"tres-tintas"},{"vendor":"Nina Campbell","active":551,"staged":0,"draft":0,"archived":240,"deleted":108,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/be680d19d550f389b28732243dace85d.png?v=1775519227","slug":"nina-campbell"},{"vendor":"LA Walls","active":535,"staged":0,"draft":3,"archived":190,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6ff05f340190b74d26f3fea698151e4c.jpg?v=1572308938","slug":"la-walls"},{"vendor":"William Morris","active":526,"staged":0,"draft":0,"archived":7,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/acanthus-morris-and-co-terracotta-wallpaper-212551-image01_be376197-6343-4874-81d2-e6dccffd7f3f.jpg?v=1741110607","slug":"william-morris"},{"vendor":"Arte International","active":523,"staged":2,"draft":21,"archived":87,"deleted":257,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Artisan_Fraction_40361_R_20_281_29.jpg?v=1573797393","slug":"arte-international"},{"vendor":"Romo","active":521,"staged":146,"draft":35,"archived":12,"deleted":1106,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/DWC198443.png?v=1689196299","slug":"romo"},{"vendor":"Newmor Wallcoverings","active":515,"staged":0,"draft":7,"archived":20,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/NEWMOR.jpg?v=1573939340","slug":"newmor-wallcoverings"},{"vendor":"British Walls","active":472,"staged":0,"draft":18,"archived":16,"deleted":22,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/bc2aace3c98ef733dbf67856f3f0f5a8.jpg?v=1733964708","slug":"british-walls"},{"vendor":"Versace","active":472,"staged":0,"draft":5,"archived":65,"deleted":4,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/VER-43200.jpg?v=1776129023","slug":"versace"},{"vendor":"1838 Wallcoverings","active":465,"staged":0,"draft":2,"archived":14,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Avington-1602-105-06.jpg?v=1733870898","slug":"1838-wallcoverings"},{"vendor":"Scalamandre","active":418,"staged":0,"draft":1,"archived":861,"deleted":4,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SC_0001ADRASPILL.jpg?v=1778530846","slug":"scalamandre"},{"vendor":"Graham & Brown","active":405,"staged":1720,"draft":0,"archived":1274,"deleted":1207,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/105661_1_063aaad9-d8ec-4723-a1d2-5cdb9473727c.jpg?v=1619855094","slug":"graham-brown"},{"vendor":"Glitter Walls","active":403,"staged":0,"draft":5,"archived":143,"deleted":5,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/936928828518ebf09a70d136c7642b7a.jpg?v=1773881000","slug":"glitter-walls"},{"vendor":"Fentucci","active":358,"staged":0,"draft":3,"archived":2589,"deleted":279,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7d9ae04c1d64756424f2de9e83929c5d_4126a217-d7cc-4015-91cb-42a014a6099b.jpg?v=1645558459","slug":"fentucci"},{"vendor":"Architectural Fabrics","active":328,"staged":0,"draft":0,"archived":155,"deleted":3,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Acquisitions_160_57452451-0876-4955-ab61-ee2e3e936704.jpg?v=1770760166","slug":"architectural-fabrics"},{"vendor":"PR Faux Leather","active":327,"staged":0,"draft":3,"archived":88,"deleted":18,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-08-08at7.24.44AM.png?v=1691504727","slug":"pr-faux-leather"},{"vendor":"AS Creation","active":327,"staged":0,"draft":51,"archived":127,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/as-creation-pintwalls.jpg?v=1761090060","slug":"as-creation"},{"vendor":"Zoffany","active":322,"staged":0,"draft":0,"archived":36,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/papaver-stripe-tuscan-pink-nimbus_45a71ae2-b7d2-4150-a27e-d84b67f9a228.jpg?v=1782050390","slug":"zoffany"},{"vendor":"Mulberry","active":319,"staged":0,"draft":2,"archived":163,"deleted":89,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/FG095_J52.jpg?v=1753302864","slug":"mulberry"},{"vendor":"Designtex","active":288,"staged":0,"draft":29,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/rocket-bright-blue-designtex.jpg?v=1781193845","slug":"designtex"},{"vendor":"Elitis","active":243,"staged":9,"draft":0,"archived":1,"deleted":9,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mural-soie-changeante-munt-muco-muvp-kosa-silk-soie-changeante-vp-928-81-d6eae7571ed407c08e13f3f4363e.jpg?v=1770332871","slug":"elitis"},{"vendor":"Ronald Redding","active":211,"staged":0,"draft":2,"archived":519,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5507c74c6763cca76e22346a84851e91.jpg?v=1572309493","slug":"ronald-redding"},{"vendor":"Innovations USA","active":210,"staged":0,"draft":140,"archived":121,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/COA-001.jpg?v=1736199588","slug":"innovations-usa"},{"vendor":"Christian Lacroix Europe","active":170,"staged":0,"draft":0,"archived":5,"deleted":4,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/3982_66bb6a68-f130-4058-abff-4d1023c19e70.webp?v=1738950735","slug":"christian-lacroix-europe"},{"vendor":"Donghia","active":157,"staged":0,"draft":1,"archived":3,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/forms-vinyl-black.jpg?v=1760998151","slug":"donghia"},{"vendor":"Novasuede","active":157,"staged":0,"draft":14,"archived":25,"deleted":20,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-acorn.jpg?v=1761251816","slug":"novasuede"},{"vendor":"Brand McKenzie","active":156,"staged":0,"draft":1,"archived":8,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/balancing-act-blue-sky_59e8010b-fb30-44d8-9dfa-dbdc3e54e547.jpg?v=1770229680","slug":"brand-mckenzie"},{"vendor":"Roberto Cavalli Wallpaper","active":149,"staged":0,"draft":4,"archived":27,"deleted":72,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/RobertoCavalliWallpaper_dwrc17002.jpg?v=1587153574","slug":"roberto-cavalli-wallpaper"},{"vendor":"Artmura","active":144,"staged":0,"draft":0,"archived":17,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Architecture-ARC-553.jpg?v=1781282391","slug":"artmura"},{"vendor":"Ralph Lauren","active":142,"staged":0,"draft":111,"archived":207,"deleted":47,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/42732.webp?v=1770857361","slug":"ralph-lauren"},{"vendor":"Marburg","active":112,"staged":0,"draft":1,"archived":8,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/marburg-memento_7a52466a-f98c-418a-8867-cb43334e5bb1.jpg?v=1761087330","slug":"marburg"},{"vendor":"Laura Ashley Wallpaper","active":110,"staged":0,"draft":1,"archived":47,"deleted":11,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/102147_2.jpg?v=1646420817","slug":"laura-ashley-wallpaper"},{"vendor":"Primo Leathers","active":109,"staged":0,"draft":0,"archived":26,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f81298921367647638f85bff1537cb6d.jpg?v=1572309749","slug":"primo-leathers"},{"vendor":"Ultrasuede","active":108,"staged":0,"draft":2,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Ultrasuede_DesignerWallcoverings_5538-1240.jpg?v=1663623221","slug":"ultrasuede"},{"vendor":"Mid Century Modern","active":106,"staged":0,"draft":0,"archived":6,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/aforestpvflat_5b451377-cb28-4ac2-a477-3f9235c86647.jpg?v=1621360616","slug":"mid-century-modern"},{"vendor":"Hospitality Wallcoverings","active":96,"staged":0,"draft":2,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ea6483220f7fbe4983ce22802f25517e.jpg?v=1572310147","slug":"hospitality-wallcoverings"},{"vendor":"Traditional Whimsy","active":90,"staged":0,"draft":1,"archived":123,"deleted":2,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4d8722fbc963d0aa93734bc096744730.jpg?v=1572308976","slug":"traditional-whimsy"},{"vendor":"Nobilis","active":75,"staged":0,"draft":0,"archived":104,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/arches.jpg?v=1761346271","slug":"nobilis"},{"vendor":"LEED Walls","active":75,"staged":0,"draft":0,"archived":54,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8301801a01873b98882aeafa3175c252.jpg?v=1572309072","slug":"leed-walls"},{"vendor":"Sister Parish","active":72,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Appleton-Beige_-Edited-SQUARE-web_02067829-5e61-42b1-b62b-df479a9d98d5.jpg?v=1778629917","slug":"sister-parish"},{"vendor":"Threads","active":71,"staged":0,"draft":1,"archived":9,"deleted":165,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/EW15027_106.jpg?v=1753302956","slug":"threads"},{"vendor":"Daisy Bennett","active":68,"staged":0,"draft":0,"archived":2,"deleted":3,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/DB-11802M_-Sky-Blue-_-Naples-Palm-Mural-550x495.jpg?v=1598367769","slug":"daisy-bennett"},{"vendor":"Retro Walls","active":63,"staged":0,"draft":9,"archived":1001,"deleted":24,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4a6ad1662fc3a43bcddf834ee41c8d9c.jpg?v=1572308908","slug":"retro-walls"},{"vendor":"Pixels","active":59,"staged":0,"draft":0,"archived":0,"deleted":3,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/royal-st-patricks-lady-steve-abrams_da8503c2-aded-4b02-a16c-27c9ea8eaf0c.jpg?v=1742790536","slug":"pixels"},{"vendor":"Glambeads by DW","active":58,"staged":0,"draft":0,"archived":1,"deleted":12,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/TTN-078_Item.jpg?v=1617474340","slug":"glambeads-by-dw"},{"vendor":"Missoni Wallpaper","active":57,"staged":0,"draft":2,"archived":60,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2d5db0629b8242682f7b187db0595576.jpg?v=1572310470","slug":"missoni-wallpaper"},{"vendor":"Luxury Murals","active":56,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9084902911f1a839c5ac26257cf2389e.jpg?v=1572309871","slug":"luxury-murals"},{"vendor":"Steve Abrams Studios","active":51,"staged":0,"draft":0,"archived":4,"deleted":2,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2157726_monterey-morning-sun_0_5f42bde6-fc54-47a3-8291-05fab8203c43.jpg?v=1693060077","slug":"steve-abrams-studios"},{"vendor":"MC Escher Wallpaper","active":50,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/23101_FISH_Dark-Green-copia_45b9d645-cd6e-4245-87c7-877a2b81fa20.jpg?v=1731630241","slug":"mc-escher-wallpaper"},{"vendor":"Graduate Collection","active":49,"staged":0,"draft":0,"archived":1,"deleted":6,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ScreenShot2021-10-08at2.46.48PM.png?v=1633729673","slug":"graduate-collection"},{"vendor":"Madagascar Walls","active":49,"staged":0,"draft":3,"archived":16,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/heavy-madagascar-natural.jpg?v=1629846967","slug":"madagascar-walls"},{"vendor":"Lincrusta","active":47,"staged":0,"draft":0,"archived":49,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Lincrusta-rd1583fr-1_2-Elizabeth-flat-shot-scaled_b5b16d4e-bfbc-4d44-8311-5f44e2935be2.jpg?v=1762453576","slug":"lincrusta"},{"vendor":"FallingStar Studio","active":42,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/product_coral_saintjohn_cc.jpg?v=1781715781","slug":"fallingstar-studio"},{"vendor":"Sancar","active":42,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/marburg-memento.jpg?v=1761086944","slug":"sancar"},{"vendor":"Hand Crafted","active":40,"staged":0,"draft":1,"archived":121,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d382b069c670233c8a6ba4c24618a1a6.jpg?v=1572308975","slug":"hand-crafted"},{"vendor":"Apartment Wallpaper","active":39,"staged":0,"draft":0,"archived":62,"deleted":2,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PSW1045RL.jpg?v=1740774834","slug":"apartment-wallpaper"},{"vendor":"Glass Beaded","active":39,"staged":0,"draft":2,"archived":66,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d314e9417f4627c6fa59adb342ea9171.jpg?v=1572308924","slug":"glass-beaded"},{"vendor":"DW Home","active":37,"staged":0,"draft":0,"archived":42,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/11829338-victoria-vintage-cream-by-designerwallcoverings_5_055b4be1-1490-45b2-b27f-3e3e9b19ebe5.jpg?v=1630457910","slug":"dw-home"},{"vendor":"Marimekko Exclusive","active":35,"staged":0,"draft":0,"archived":1,"deleted":2,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/23300X.jpg?v=1609976090","slug":"marimekko-exclusive"},{"vendor":"Graduate Collection UK","active":35,"staged":0,"draft":0,"archived":2,"deleted":7,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ScreenShot2021-10-08at2.38.34PM.png?v=1709589603","slug":"graduate-collection-uk"},{"vendor":"Boråstapeter","active":31,"staged":0,"draft":0,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5474_c7d2824a-1e07-40a3-a5c2-724f5fea1ecb.jpg?v=1652137755","slug":"bor-stapeter"},{"vendor":"Phyllis Morris","active":27,"staged":0,"draft":0,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f6e13919ec3fb608cbbb1a533c65f433_e625b3a4-56fe-47b3-adb2-391d56b4f1d2.jpg?v=1653413450","slug":"phyllis-morris"},{"vendor":"Dolce & Gabbana","active":27,"staged":0,"draft":0,"archived":9,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/TCW001TCAI5UL005.jpg?v=1711558272","slug":"dolce-gabbana"},{"vendor":"Natural Paint","active":26,"staged":0,"draft":0,"archived":0,"deleted":2,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/77daf2c9f07431eba5cc8a2902038c1e.jpg?v=1572309828","slug":"natural-paint"},{"vendor":"Franquemont London","active":26,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Verster_Rust_86b9c2fe-d3ca-4385-b822-65609172455e.jpg?v=1771007755","slug":"franquemont-london"},{"vendor":"Zeuxis Parrhasius Europe","active":22,"staged":0,"draft":0,"archived":10,"deleted":89,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ZEU-34007-1.png?v=1736211205","slug":"zeuxis-parrhasius-europe"},{"vendor":"Newwall","active":17,"staged":0,"draft":6,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/A00800_01_3fc8f142-a77b-45bd-ac48-ca6d73e00f94.jpg?v=1781980443","slug":"newwall"},{"vendor":"Contrado","active":15,"staged":0,"draft":0,"archived":4,"deleted":74,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1436057_loafer-espadrilles_0.jpg?v=1693060543","slug":"contrado"},{"vendor":"Hollywood Acoustical","active":13,"staged":0,"draft":15,"archived":35,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2bd76bfac054ded030ad269641d7c683.jpg?v=1572309803","slug":"hollywood-acoustical"},{"vendor":"Brewster & York","active":12,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/0037267_adrian-honey-paisley-wallpaper.jpg?v=1782254467","slug":"brewster-york"},{"vendor":"Wallpaper NYC","active":12,"staged":0,"draft":0,"archived":83,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/47a4050f95d915811d41a91a0f2a85e3.jpg?v=1572309836","slug":"wallpaper-nyc"},{"vendor":"Showroom Line","active":11,"staged":0,"draft":0,"archived":32,"deleted":200,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/dd9fc1c61ffcfea3fa00a6aa8e53db33.jpg?v=1572310469","slug":"showroom-line"},{"vendor":"Hygge & West","active":10,"staged":0,"draft":1,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ScreenShot2021-10-08at9.33.33AM.png?v=1633710840","slug":"hygge-west"},{"vendor":"Witch & Watchman","active":10,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WW_AmazoniaDARK_02_25ee03e3-f42f-4ad9-8f38-389bd5489674.jpg?v=1613077506","slug":"witch-watchman"},{"vendor":"SUGARBOO","active":10,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Excuse_me_while_i_kiss_the_sky.jpg?v=1748368159","slug":"sugarboo"},{"vendor":"NLXL","active":9,"staged":0,"draft":0,"archived":1,"deleted":143,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/BGR-04_Nizwa_Jade_Metallic_SIM_8794a875-9e3c-470e-a5de-87a3b649e936.jpg?v=1602007538","slug":"nlxl"},{"vendor":"Quadrille","active":9,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/light-plum-on-light-tint-1908_1_151652.jpg?v=1782260112","slug":"quadrille"},{"vendor":"Backdrop","active":9,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tanbark-multi.jpg?v=1760712522","slug":"backdrop"},{"vendor":"Innovations","active":8,"staged":1,"draft":0,"archived":1,"deleted":6,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R78901.jpg?v=1781820450","slug":"innovations"},{"vendor":"Andrew Martin","active":5,"staged":0,"draft":1,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/pear-tree-plaster.jpg?v=1760989439","slug":"andrew-martin"},{"vendor":"Zeuxis Parrhasius at DW","active":5,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2024-05-24at9.57.44AM.png?v=1716569888","slug":"zeuxis-parrhasius-at-dw"},{"vendor":"Architectural Wallcoverings","active":4,"staged":0,"draft":0,"archived":5,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PNT-01.jpg?v=1773082106","slug":"architectural-wallcoverings"},{"vendor":"Vahallan","active":4,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/unearthed-woodburn.jpg?v=1761064322","slug":"vahallan"},{"vendor":"Baker Lifestyle","active":4,"staged":0,"draft":3,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PW78025_3.jpg?v=1775761453","slug":"baker-lifestyle"},{"vendor":"Caroline Cecil Textiles","active":3,"staged":0,"draft":3,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/CCP-2348_11.jpg?v=1776795802","slug":"caroline-cecil-textiles"},{"vendor":"Alan Campbell","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/soft-lavender-on-tint-436_1_205506.jpg?v=1782265243","slug":"alan-campbell"},{"vendor":"Black Edition","active":3,"staged":0,"draft":0,"archived":2,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W916-04-zardozi-wallcovering-tundra_01_3b9771c7-20fc-40db-8a95-de05b2697309.jpg?v=1773709475","slug":"black-edition"},{"vendor":"Charles Burger","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/multi-341_1_021457.jpg?v=1782265258","slug":"charles-burger"},{"vendor":"Clarke and Clarke","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0201_01_CAC.jpg?v=1776795805","slug":"clarke-and-clarke-2"},{"vendor":"Cloth and Paper","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/light-blue-on-westover-275_1_043643.jpg?v=1782268820","slug":"cloth-and-paper"},{"vendor":"Fabricut","active":3,"staged":7,"draft":0,"archived":43,"deleted":7,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/seaton-wp-506.jpg?v=1761581842","slug":"fabricut"},{"vendor":"Holland and Sherry","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DWC-256039-DesignerWallcoverings-Los-Angeles-1_810332fc-fe17-4cc9-9ee4-873dd300d83d.jpg?v=1720563435","slug":"holland-and-sherry"},{"vendor":"Home Couture","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/multi-blue-green-beige-3423_1_162655.jpg?v=1782265251","slug":"home-couture"},{"vendor":"Malibu","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hiding-tigers-green-and-orange.jpg?v=1761762754","slug":"malibu"},{"vendor":"Peg Norriss","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/flying-west-orange.jpg?v=1760724954","slug":"peg-norriss"},{"vendor":"Pierre Frey","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/DWC-206982-DesignerWallcoverings-Los-Angeles-1.png?v=1690501546","slug":"pierre-frey"},{"vendor":"Plains","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/aqua-2522_1_145942.jpg?v=1782268838","slug":"plains"},{"vendor":"Sacha Walckhoff","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hide-and-seek-aqueous-wallpaper.jpg?v=1761326609","slug":"sacha-walckhoff"},{"vendor":"Suncloth","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Beau-Rivage-Orange-on-White-Suncloth-AC980-06WSUN_214409-sm-thumb.jpg?v=1782268831","slug":"suncloth"},{"vendor":"Villa Nova","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W538-02-zeta-wallcovering-shingle_02_8176564e-e7c7-4816-a64f-7a3d3b3d9416.jpg?v=1773707394","slug":"villa-nova"},{"vendor":"Zinc Textile","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ZW135-03-zorelli-wallcovering-umber_03.jpg?v=1773707390","slug":"zinc-textile"},{"vendor":"Clarence House","active":2,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Claence_House_at_DW_1647906.jpg?v=1572310944","slug":"clarence-house"},{"vendor":"Winfield Thybony","active":2,"staged":0,"draft":1,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3824_1_618454e1-9932-4209-8e66-185041788d24.jpg?v=1753121259","slug":"winfield-thybony"},{"vendor":"Kirkby Design","active":2,"staged":0,"draft":0,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/WK810-06-zig-zag-birds-wallcovering-silver_03_2fb60883-6fb6-446d-801f-7bf5a92178b5.jpg?v=1773707386","slug":"kirkby-design"},{"vendor":"Erika Wakerly","active":2,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Screenshot_2019-08-01_11.01.29.png?v=1572310884","slug":"erika-wakerly"},{"vendor":"Kravet Design","active":2,"staged":0,"draft":2,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3606_5_thumb_5197a1f7-d726-44bc-9a21-8eac0d9900e5.jpg?v=1776794894","slug":"kravet-design"},{"vendor":"Kravet Couture","active":2,"staged":0,"draft":2,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AMW10082_106_cf37a926-bc74-4fa1-a33c-091aff71b5ae.jpg?v=1776794890","slug":"kravet-couture"},{"vendor":"Atomic 50 Ceilings","active":2,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/41-UNFINISHED-SCA.jpg?v=1773706633","slug":"atomic-50-ceilings"},{"vendor":"Patty Madden","active":2,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/celestial-loom-silken-azure.jpg?v=1761496626","slug":"patty-madden"},{"vendor":"Sarah Bartholomew","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mallorcan-ikat-berry.jpg?v=1760989089","slug":"sarah-bartholomew"},{"vendor":"Lee Jofa Modern","active":1,"staged":0,"draft":1,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GWP-3750_161.jpg?v=1776795834","slug":"lee-jofa-modern"},{"vendor":"Scalamandre Fabrics","active":1,"staged":0,"draft":0,"archived":10177,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/S7_0003ATTC_DWC.jpg?v=1589937291","slug":"scalamandre-fabrics"},{"vendor":"Scion","active":1,"staged":0,"draft":1,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DWKK-155304.jpg?v=1776875769","slug":"scion"},{"vendor":"Kelly Wearstler","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/signal-paper-ocean.jpg?v=1760979312","slug":"kelly-wearstler"},{"vendor":"Happy Menocal","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/beasts-multi-on-ivory.jpg?v=1760732148","slug":"happy-menocal"},{"vendor":"Steven Abrams Photography","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ScreenShot2023-01-30at7.56.32AM.png?v=1675094359","slug":"steven-abrams-photography"},{"vendor":"Studio Ditte","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/vogel-behang-blauw-goud.jpg?v=1762277468","slug":"studio-ditte"},{"vendor":"G P & J Baker","active":1,"staged":0,"draft":1,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BW45141_2_7598bef2-55ce-4530-80c2-706adbab8a89.jpg?v=1776795816","slug":"g-p-j-baker"},{"vendor":"Ananbo","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/riviera.webp?v=1761541180","slug":"ananbo"},{"vendor":"French Market","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WDB4138-ASM.jpg?v=1572310884","slug":"french-market"},{"vendor":"Farrow & Ball","active":1,"staged":0,"draft":0,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/purnon.jpg?v=1761344027","slug":"farrow-ball"},{"vendor":"Emiliana Parati","active":1,"staged":0,"draft":0,"archived":14,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/emiliana-parati-valentin-yudashkin-5.jpg?v=1761090561","slug":"emiliana-parati"},{"vendor":"Edge Wallcovering","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/unnamed.jpg?v=1573747790","slug":"edge-wallcovering"},{"vendor":"DWHD","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/akasha-polaris.jpg?v=1775660108","slug":"dwhd"},{"vendor":"DW Exclusive Wallpaper","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DWC-211497-DesignerWallcoverings-Los-Angeles-4_7be9edb9-4fa6-4932-befb-1ff3ea511732.jpg?v=1694028327","slug":"dw-exclusive-wallpaper"},{"vendor":"Dupenny","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Accessorise-CADILLAC-WP-Thumb-Shop.jpg?v=1775598529","slug":"dupenny"},{"vendor":"Dedar","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/1__74269.1773625470.jpg?v=1773712278","slug":"dedar"},{"vendor":"A.S. Création","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/66e3a5f29fd1fd50090f5d5fce9b4ddc.jpg?v=1773629119","slug":"a-s-cr-ation"},{"vendor":"Coordonn��","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/A00909_01.jpg?v=1739302772","slug":"coordonn-2"},{"vendor":"OLIVIA AND POPP","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Stud_700x_423d7fd3-711e-4365-8447-ca4675354f41.jpg?v=1572310884","slug":"olivia-and-popp"},{"vendor":"Catchii Netherlands Europe","active":1,"staged":0,"draft":0,"archived":0,"deleted":387,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Wallpaper-Behang-Posh-Snakes-gray-green-groen-grijs-Catchii-mockup_328e2e61-4b16-43d9-bf54-c100543af4bd.jpg?v=1744999054","slug":"catchii-netherlands-europe"},{"vendor":"Printy6","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/092ef5f6ae5f6de607dd664dab99fc87.png?v=1572310843","slug":"printy6"},{"vendor":"Rebecca Moses","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/close-up-dazzling-pearl.jpg?v=1761537905","slug":"rebecca-moses"},{"vendor":"Rebel Studio","active":1,"staged":0,"draft":1,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/the-swedish-forest.jpg?v=1760737227","slug":"rebel-studio"},{"vendor":"Celerie Kemble","active":1,"staged":0,"draft":0,"archived":0,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tortoise.jpg?v=1760721667","slug":"celerie-kemble"},{"vendor":"Roberto Cavalli","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/RC21014_7705b8e2-6e22-4efb-a09b-aaff24309dcc.jpg?v=1743188122","slug":"roberto-cavalli"},{"vendor":"Morris and Company","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/DCMW216804.jpg?v=1645497134","slug":"morris-and-company"},{"vendor":"Milton & King","active":1,"staged":0,"draft":0,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/great-oak-wallpaper.jpg?v=1760765930","slug":"milton-king"},{"vendor":"Mark Alexander","active":1,"staged":0,"draft":0,"archived":1,"deleted":237,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW110-03-kami-lake_03_50d9cb5c-8dae-41f2-afe6-547a8bd539fd.jpg?v=1775598512","slug":"mark-alexander"},{"vendor":"Malibu Walls","active":1,"staged":0,"draft":0,"archived":118,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/0125783_aspen-wallpaper-teal.jpg?v=1774484431","slug":"malibu-walls"},{"vendor":"Linherr Hollingsworth","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/niko-mod-verde.jpg?v=1760985832","slug":"linherr-hollingsworth"},{"vendor":"Sara Bergqvist","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/happy-rebel-peach.jpg?v=1760737102","slug":"sara-bergqvist"}]
\ No newline at end of file
+[{"vendor":"Phillipe Romano","active":10446,"staged":3,"draft":3497,"archived":4909,"deleted":1835,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7900db261e1437eacc59640e29bf4b72.jpg?v=1745461030","slug":"phillipe-romano"},{"vendor":"Rebel Walls","active":3613,"staged":0,"draft":0,"archived":108,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/R12711_image2.jpg?v=1756329365","slug":"rebel-walls"},{"vendor":"Clarke And Clarke","active":3573,"staged":0,"draft":4,"archived":350,"deleted":170,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/F0063_02_CAC_86388dc7-1fcd-428f-8ed8-f19a05aced49.jpg?v=1725863790","slug":"clarke-and-clarke"},{"vendor":"Hollywood Wallcoverings","active":3155,"staged":0,"draft":52,"archived":2433,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dry-erase-it-light-goose-grey-sample-dry-erase-it-light-goose-grey-hollywood.jpg?v=1775710353","slug":"hollywood-wallcoverings"},{"vendor":"Brunschwig & Fils","active":2761,"staged":0,"draft":4,"archived":606,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/8012112_30_5ba8203c-9eaa-4f9c-8fbf-f3088e42c5e9.jpg?v=1725917772","slug":"brunschwig-fils"},{"vendor":"Malibu Wallpaper","active":2657,"staged":0,"draft":884,"archived":490,"deleted":15,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/85590af2b224fa39d0fa88363fb95a19.jpg?v=1572308930","slug":"malibu-wallpaper"},{"vendor":"Phillip Jeffries","active":2473,"staged":0,"draft":30,"archived":584,"deleted":1291,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ScreenShot2023-01-17at10.16.49AM.png?v=1673979422","slug":"phillip-jeffries"},{"vendor":"Koroseal","active":2351,"staged":233,"draft":1,"archived":196,"deleted":272,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/TAKUMI_TAK-AA01-01__FOIL__new.jpg?v=1739409068","slug":"koroseal"},{"vendor":"Schumacher","active":2340,"staged":0,"draft":50,"archived":2790,"deleted":17,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/5006051.jpg?v=1770834701","slug":"schumacher"},{"vendor":"Kravet","active":2227,"staged":4,"draft":0,"archived":2675,"deleted":2718,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-hotel_lobby-30787-100-0.jpg?v=1775089660","slug":"kravet"},{"vendor":"Lee Jofa","active":2152,"staged":0,"draft":3,"archived":1540,"deleted":187,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/2002172_16_7b7ef5af-9147-4edb-8745-9c0def206416.jpg?v=1726546752","slug":"lee-jofa"},{"vendor":"Gaston Y Daniela","active":2151,"staged":0,"draft":2,"archived":140,"deleted":11,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GDT1597_002.jpg?v=1725493906","slug":"gaston-y-daniela"},{"vendor":"Thibaut","active":2055,"staged":1143,"draft":713,"archived":1106,"deleted":66,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T10127_e4759337-cc46-42af-9fa0-9f205dcf5901.jpg?v=1781203444","slug":"thibaut"},{"vendor":"Los Angeles Fabrics","active":1840,"staged":0,"draft":1,"archived":525,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Anita-Olympic-1024x914.jpg?v=1773140675","slug":"los-angeles-fabrics"},{"vendor":"China Seas","active":1776,"staged":0,"draft":17,"archived":13,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/beiges-1643_1_201210.jpg?v=1781621005","slug":"china-seas"},{"vendor":"Designer Wallcoverings","active":1532,"staged":0,"draft":38,"archived":692,"deleted":140,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8a662e977e6dc37098454c433d4c586f.jpg?v=1572308908","slug":"designer-wallcoverings"},{"vendor":"Jeffrey Stevens","active":1498,"staged":0,"draft":7,"archived":2304,"deleted":4,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/108c5c5e93020df86f79d67064aac34b.jpg?v=1750789779","slug":"jeffrey-stevens"},{"vendor":"Coordonné","active":1319,"staged":0,"draft":5,"archived":6,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4fcaedc487f2eb0945685ff4338ae964.jpg?v=1739304074","slug":"coordonn"},{"vendor":"Cole & Son","active":1238,"staged":0,"draft":13,"archived":17,"deleted":49,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/100_1001_CS_cc8290a8-cd72-478b-ad98-7cb39bf9b1f9.jpg?v=1753306833","slug":"cole-son"},{"vendor":"GP & J Baker","active":1197,"staged":0,"draft":0,"archived":688,"deleted":23,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BF10118_815_d6a05135-001c-444e-8162-ba560cba596e.jpg?v=1726156123","slug":"gp-j-baker"},{"vendor":"Mind the Gap","active":1134,"staged":0,"draft":6,"archived":121,"deleted":5,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/MESCALINE_494fae35-364f-4a53-957e-58373af160ef.jpg?v=1617223931","slug":"mind-the-gap"},{"vendor":"Scalamandre Wallpaper","active":966,"staged":0,"draft":2,"archived":185,"deleted":16,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d5337001dc49644243abe7e186cff5cf.jpg?v=1572309163","slug":"scalamandre-wallpaper"},{"vendor":"Osborne & Little","active":957,"staged":1,"draft":5,"archived":79,"deleted":9,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/w7192-08_1_462fc2c2-66ab-4aaa-87fb-eccfa2dfb3da.jpg?v=1586920884","slug":"osborne-little"},{"vendor":"DW Bespoke Studio","active":921,"staged":0,"draft":3,"archived":1407,"deleted":2632,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5443fe3757e94da5673c3886c1ad70d3.png?v=1572308907","slug":"dw-bespoke-studio"},{"vendor":"Designers Guild","active":853,"staged":0,"draft":2,"archived":24,"deleted":114,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/133029.jpg?v=1633560511","slug":"designers-guild"},{"vendor":"Versa Designed Surfaces","active":842,"staged":0,"draft":0,"archived":42,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Brio_A119-038-Earl_Grey.jpg?v=1773813795","slug":"versa-designed-surfaces"},{"vendor":"Anna French","active":814,"staged":608,"draft":5,"archived":289,"deleted":14,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f6586a2b0ba408e8f719f74ce52d9f91_6f6911c4-36e9-4199-9d5d-a70aa7dd97c3.jpg?v=1572309282","slug":"anna-french"},{"vendor":"Sandberg","active":769,"staged":0,"draft":2,"archived":220,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/101-16_image1.jpg?v=1756388593","slug":"sandberg"},{"vendor":"Surface Stick","active":743,"staged":0,"draft":8,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/49ced0ab6c98f97f5d55709a3ee043d5.jpg?v=1572309620","slug":"surface-stick"},{"vendor":"PS Removable Wallpaper","active":736,"staged":0,"draft":0,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SG10002_69111bea-bf30-4fe1-af67-72fd2260b1fd.jpg?v=1748377510","slug":"ps-removable-wallpaper"},{"vendor":"Wolf Gordon","active":688,"staged":0,"draft":68,"archived":771,"deleted":21,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/act-5065.jpg?v=1762357730","slug":"wolf-gordon"},{"vendor":"Maya Romanoff","active":624,"staged":0,"draft":5,"archived":61,"deleted":224,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mr-abh-1109-Maya_Romanoff_1.jpg?v=1738861849","slug":"maya-romanoff"},{"vendor":"Harlequin","active":583,"staged":0,"draft":0,"archived":3,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/HC4W113002.jpg?v=1739493282","slug":"harlequin"},{"vendor":"Tres Tintas","active":577,"staged":0,"draft":0,"archived":0,"deleted":12,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/M2910-3_product.jpg?v=1756311980","slug":"tres-tintas"},{"vendor":"Nina Campbell","active":551,"staged":0,"draft":0,"archived":240,"deleted":108,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/be680d19d550f389b28732243dace85d.png?v=1775519227","slug":"nina-campbell"},{"vendor":"LA Walls","active":535,"staged":0,"draft":3,"archived":190,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6ff05f340190b74d26f3fea698151e4c.jpg?v=1572308938","slug":"la-walls"},{"vendor":"William Morris","active":526,"staged":0,"draft":0,"archived":7,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/acanthus-morris-and-co-terracotta-wallpaper-212551-image01_be376197-6343-4874-81d2-e6dccffd7f3f.jpg?v=1741110607","slug":"william-morris"},{"vendor":"Arte International","active":523,"staged":2,"draft":21,"archived":87,"deleted":257,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Artisan_Fraction_40361_R_20_281_29.jpg?v=1573797393","slug":"arte-international"},{"vendor":"Romo","active":521,"staged":146,"draft":35,"archived":12,"deleted":1106,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/DWC198443.png?v=1689196299","slug":"romo"},{"vendor":"Newmor Wallcoverings","active":515,"staged":0,"draft":7,"archived":20,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/NEWMOR.jpg?v=1573939340","slug":"newmor-wallcoverings"},{"vendor":"British Walls","active":472,"staged":0,"draft":18,"archived":16,"deleted":22,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/bc2aace3c98ef733dbf67856f3f0f5a8.jpg?v=1733964708","slug":"british-walls"},{"vendor":"Versace","active":472,"staged":0,"draft":5,"archived":65,"deleted":4,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/VER-43200.jpg?v=1776129023","slug":"versace"},{"vendor":"1838 Wallcoverings","active":465,"staged":0,"draft":2,"archived":14,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Avington-1602-105-06.jpg?v=1733870898","slug":"1838-wallcoverings"},{"vendor":"Scalamandre","active":418,"staged":0,"draft":1,"archived":861,"deleted":4,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SC_0001ADRASPILL.jpg?v=1778530846","slug":"scalamandre"},{"vendor":"Graham & Brown","active":405,"staged":1720,"draft":0,"archived":1274,"deleted":1207,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/105661_1_063aaad9-d8ec-4723-a1d2-5cdb9473727c.jpg?v=1619855094","slug":"graham-brown"},{"vendor":"Glitter Walls","active":403,"staged":0,"draft":5,"archived":143,"deleted":5,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/936928828518ebf09a70d136c7642b7a.jpg?v=1773881000","slug":"glitter-walls"},{"vendor":"Fentucci","active":358,"staged":0,"draft":3,"archived":2589,"deleted":279,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7d9ae04c1d64756424f2de9e83929c5d_4126a217-d7cc-4015-91cb-42a014a6099b.jpg?v=1645558459","slug":"fentucci"},{"vendor":"Architectural Fabrics","active":328,"staged":0,"draft":0,"archived":155,"deleted":3,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Acquisitions_160_57452451-0876-4955-ab61-ee2e3e936704.jpg?v=1770760166","slug":"architectural-fabrics"},{"vendor":"PR Faux Leather","active":327,"staged":0,"draft":3,"archived":88,"deleted":18,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-08-08at7.24.44AM.png?v=1691504727","slug":"pr-faux-leather"},{"vendor":"AS Creation","active":327,"staged":0,"draft":51,"archived":127,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/as-creation-pintwalls.jpg?v=1761090060","slug":"as-creation"},{"vendor":"Zoffany","active":322,"staged":0,"draft":0,"archived":36,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/papaver-stripe-tuscan-pink-nimbus_45a71ae2-b7d2-4150-a27e-d84b67f9a228.jpg?v=1782050390","slug":"zoffany"},{"vendor":"Mulberry","active":319,"staged":0,"draft":2,"archived":163,"deleted":89,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/FG095_J52.jpg?v=1753302864","slug":"mulberry"},{"vendor":"Designtex","active":288,"staged":0,"draft":29,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/rocket-bright-blue-designtex.jpg?v=1781193845","slug":"designtex"},{"vendor":"Elitis","active":243,"staged":9,"draft":0,"archived":1,"deleted":9,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mural-soie-changeante-munt-muco-muvp-kosa-silk-soie-changeante-vp-928-81-d6eae7571ed407c08e13f3f4363e.jpg?v=1770332871","slug":"elitis"},{"vendor":"Ronald Redding","active":211,"staged":0,"draft":2,"archived":519,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5507c74c6763cca76e22346a84851e91.jpg?v=1572309493","slug":"ronald-redding"},{"vendor":"Innovations USA","active":210,"staged":0,"draft":140,"archived":121,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/COA-001.jpg?v=1736199588","slug":"innovations-usa"},{"vendor":"Christian Lacroix Europe","active":170,"staged":0,"draft":0,"archived":5,"deleted":4,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/3982_66bb6a68-f130-4058-abff-4d1023c19e70.webp?v=1738950735","slug":"christian-lacroix-europe"},{"vendor":"Donghia","active":157,"staged":0,"draft":1,"archived":3,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/forms-vinyl-black.jpg?v=1760998151","slug":"donghia"},{"vendor":"Novasuede","active":157,"staged":0,"draft":14,"archived":25,"deleted":20,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/novasuede-acorn.jpg?v=1761251816","slug":"novasuede"},{"vendor":"Brand McKenzie","active":156,"staged":0,"draft":1,"archived":8,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/balancing-act-blue-sky_59e8010b-fb30-44d8-9dfa-dbdc3e54e547.jpg?v=1770229680","slug":"brand-mckenzie"},{"vendor":"Roberto Cavalli Wallpaper","active":149,"staged":0,"draft":4,"archived":27,"deleted":72,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/RobertoCavalliWallpaper_dwrc17002.jpg?v=1587153574","slug":"roberto-cavalli-wallpaper"},{"vendor":"Artmura","active":144,"staged":0,"draft":0,"archived":17,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Architecture-ARC-553.jpg?v=1781282391","slug":"artmura"},{"vendor":"Ralph Lauren","active":142,"staged":0,"draft":111,"archived":207,"deleted":47,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/42732.webp?v=1770857361","slug":"ralph-lauren"},{"vendor":"Marburg","active":112,"staged":0,"draft":1,"archived":8,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/marburg-memento_7a52466a-f98c-418a-8867-cb43334e5bb1.jpg?v=1761087330","slug":"marburg"},{"vendor":"Laura Ashley Wallpaper","active":110,"staged":0,"draft":1,"archived":47,"deleted":11,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/102147_2.jpg?v=1646420817","slug":"laura-ashley-wallpaper"},{"vendor":"Primo Leathers","active":109,"staged":0,"draft":0,"archived":26,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f81298921367647638f85bff1537cb6d.jpg?v=1572309749","slug":"primo-leathers"},{"vendor":"Ultrasuede","active":108,"staged":0,"draft":2,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Ultrasuede_DesignerWallcoverings_5538-1240.jpg?v=1663623221","slug":"ultrasuede"},{"vendor":"Mid Century Modern","active":106,"staged":0,"draft":0,"archived":6,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/aforestpvflat_5b451377-cb28-4ac2-a477-3f9235c86647.jpg?v=1621360616","slug":"mid-century-modern"},{"vendor":"Hospitality Wallcoverings","active":96,"staged":0,"draft":2,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ea6483220f7fbe4983ce22802f25517e.jpg?v=1572310147","slug":"hospitality-wallcoverings"},{"vendor":"Traditional Whimsy","active":90,"staged":0,"draft":1,"archived":123,"deleted":2,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4d8722fbc963d0aa93734bc096744730.jpg?v=1572308976","slug":"traditional-whimsy"},{"vendor":"Nobilis","active":75,"staged":0,"draft":0,"archived":104,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/arches.jpg?v=1761346271","slug":"nobilis"},{"vendor":"LEED Walls","active":75,"staged":0,"draft":0,"archived":54,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8301801a01873b98882aeafa3175c252.jpg?v=1572309072","slug":"leed-walls"},{"vendor":"Sister Parish","active":72,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Appleton-Beige_-Edited-SQUARE-web_02067829-5e61-42b1-b62b-df479a9d98d5.jpg?v=1778629917","slug":"sister-parish"},{"vendor":"Threads","active":71,"staged":0,"draft":1,"archived":9,"deleted":165,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/EW15027_106.jpg?v=1753302956","slug":"threads"},{"vendor":"Daisy Bennett","active":68,"staged":0,"draft":0,"archived":2,"deleted":3,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/DB-11802M_-Sky-Blue-_-Naples-Palm-Mural-550x495.jpg?v=1598367769","slug":"daisy-bennett"},{"vendor":"Retro Walls","active":63,"staged":0,"draft":9,"archived":1001,"deleted":24,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4a6ad1662fc3a43bcddf834ee41c8d9c.jpg?v=1572308908","slug":"retro-walls"},{"vendor":"Pixels","active":59,"staged":0,"draft":0,"archived":0,"deleted":3,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/royal-st-patricks-lady-steve-abrams_da8503c2-aded-4b02-a16c-27c9ea8eaf0c.jpg?v=1742790536","slug":"pixels"},{"vendor":"Glambeads by DW","active":58,"staged":0,"draft":0,"archived":1,"deleted":12,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/TTN-078_Item.jpg?v=1617474340","slug":"glambeads-by-dw"},{"vendor":"Missoni Wallpaper","active":57,"staged":0,"draft":2,"archived":60,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2d5db0629b8242682f7b187db0595576.jpg?v=1572310470","slug":"missoni-wallpaper"},{"vendor":"Luxury Murals","active":56,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9084902911f1a839c5ac26257cf2389e.jpg?v=1572309871","slug":"luxury-murals"},{"vendor":"Steve Abrams Studios","active":51,"staged":0,"draft":0,"archived":4,"deleted":2,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2157726_monterey-morning-sun_0_5f42bde6-fc54-47a3-8291-05fab8203c43.jpg?v=1693060077","slug":"steve-abrams-studios"},{"vendor":"MC Escher Wallpaper","active":50,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/23101_FISH_Dark-Green-copia_45b9d645-cd6e-4245-87c7-877a2b81fa20.jpg?v=1731630241","slug":"mc-escher-wallpaper"},{"vendor":"Graduate Collection","active":49,"staged":0,"draft":0,"archived":1,"deleted":6,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ScreenShot2021-10-08at2.46.48PM.png?v=1633729673","slug":"graduate-collection"},{"vendor":"Madagascar Walls","active":49,"staged":0,"draft":3,"archived":16,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/heavy-madagascar-natural.jpg?v=1629846967","slug":"madagascar-walls"},{"vendor":"Lincrusta","active":47,"staged":0,"draft":0,"archived":49,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Lincrusta-rd1583fr-1_2-Elizabeth-flat-shot-scaled_b5b16d4e-bfbc-4d44-8311-5f44e2935be2.jpg?v=1762453576","slug":"lincrusta"},{"vendor":"FallingStar Studio","active":42,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/product_coral_saintjohn_cc.jpg?v=1781715781","slug":"fallingstar-studio"},{"vendor":"Sancar","active":42,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/marburg-memento.jpg?v=1761086944","slug":"sancar"},{"vendor":"Hand Crafted","active":40,"staged":0,"draft":1,"archived":121,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d382b069c670233c8a6ba4c24618a1a6.jpg?v=1572308975","slug":"hand-crafted"},{"vendor":"Apartment Wallpaper","active":39,"staged":0,"draft":0,"archived":62,"deleted":2,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PSW1045RL.jpg?v=1740774834","slug":"apartment-wallpaper"},{"vendor":"Glass Beaded","active":39,"staged":0,"draft":2,"archived":66,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d314e9417f4627c6fa59adb342ea9171.jpg?v=1572308924","slug":"glass-beaded"},{"vendor":"DW Home","active":37,"staged":0,"draft":0,"archived":42,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/11829338-victoria-vintage-cream-by-designerwallcoverings_5_055b4be1-1490-45b2-b27f-3e3e9b19ebe5.jpg?v=1630457910","slug":"dw-home"},{"vendor":"Marimekko Exclusive","active":35,"staged":0,"draft":0,"archived":1,"deleted":2,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/23300X.jpg?v=1609976090","slug":"marimekko-exclusive"},{"vendor":"Graduate Collection UK","active":35,"staged":0,"draft":0,"archived":2,"deleted":7,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ScreenShot2021-10-08at2.38.34PM.png?v=1709589603","slug":"graduate-collection-uk"},{"vendor":"Boråstapeter","active":31,"staged":0,"draft":0,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5474_c7d2824a-1e07-40a3-a5c2-724f5fea1ecb.jpg?v=1652137755","slug":"bor-stapeter"},{"vendor":"Phyllis Morris","active":27,"staged":0,"draft":0,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f6e13919ec3fb608cbbb1a533c65f433_e625b3a4-56fe-47b3-adb2-391d56b4f1d2.jpg?v=1653413450","slug":"phyllis-morris"},{"vendor":"Dolce & Gabbana","active":27,"staged":0,"draft":0,"archived":9,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/TCW001TCAI5UL005.jpg?v=1711558272","slug":"dolce-gabbana"},{"vendor":"Natural Paint","active":26,"staged":0,"draft":0,"archived":0,"deleted":2,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/77daf2c9f07431eba5cc8a2902038c1e.jpg?v=1572309828","slug":"natural-paint"},{"vendor":"Franquemont London","active":26,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Verster_Rust_86b9c2fe-d3ca-4385-b822-65609172455e.jpg?v=1771007755","slug":"franquemont-london"},{"vendor":"Zeuxis Parrhasius Europe","active":22,"staged":0,"draft":0,"archived":10,"deleted":89,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ZEU-34007-1.png?v=1736211205","slug":"zeuxis-parrhasius-europe"},{"vendor":"Newwall","active":17,"staged":0,"draft":6,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/A00800_01_3fc8f142-a77b-45bd-ac48-ca6d73e00f94.jpg?v=1781980443","slug":"newwall"},{"vendor":"Contrado","active":15,"staged":0,"draft":0,"archived":4,"deleted":74,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1436057_loafer-espadrilles_0.jpg?v=1693060543","slug":"contrado"},{"vendor":"Hollywood Acoustical","active":13,"staged":0,"draft":15,"archived":35,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2bd76bfac054ded030ad269641d7c683.jpg?v=1572309803","slug":"hollywood-acoustical"},{"vendor":"Brewster & York","active":12,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/0037267_adrian-honey-paisley-wallpaper.jpg?v=1782254467","slug":"brewster-york"},{"vendor":"Wallpaper NYC","active":12,"staged":0,"draft":0,"archived":83,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/47a4050f95d915811d41a91a0f2a85e3.jpg?v=1572309836","slug":"wallpaper-nyc"},{"vendor":"Showroom Line","active":11,"staged":0,"draft":0,"archived":32,"deleted":200,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/dd9fc1c61ffcfea3fa00a6aa8e53db33.jpg?v=1572310469","slug":"showroom-line"},{"vendor":"Hygge & West","active":10,"staged":0,"draft":1,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ScreenShot2021-10-08at9.33.33AM.png?v=1633710840","slug":"hygge-west"},{"vendor":"Witch & Watchman","active":10,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WW_AmazoniaDARK_02_25ee03e3-f42f-4ad9-8f38-389bd5489674.jpg?v=1613077506","slug":"witch-watchman"},{"vendor":"SUGARBOO","active":10,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Excuse_me_while_i_kiss_the_sky.jpg?v=1748368159","slug":"sugarboo"},{"vendor":"NLXL","active":9,"staged":0,"draft":0,"archived":1,"deleted":143,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/BGR-04_Nizwa_Jade_Metallic_SIM_8794a875-9e3c-470e-a5de-87a3b649e936.jpg?v=1602007538","slug":"nlxl"},{"vendor":"Quadrille","active":9,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/light-plum-on-light-tint-1908_1_151652.jpg?v=1782260112","slug":"quadrille"},{"vendor":"Backdrop","active":9,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tanbark-multi.jpg?v=1760712522","slug":"backdrop"},{"vendor":"Innovations","active":8,"staged":1,"draft":0,"archived":1,"deleted":6,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R78901.jpg?v=1781820450","slug":"innovations"},{"vendor":"Andrew Martin","active":5,"staged":0,"draft":1,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/pear-tree-plaster.jpg?v=1760989439","slug":"andrew-martin"},{"vendor":"Zeuxis Parrhasius at DW","active":5,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2024-05-24at9.57.44AM.png?v=1716569888","slug":"zeuxis-parrhasius-at-dw"},{"vendor":"Architectural Wallcoverings","active":4,"staged":0,"draft":0,"archived":5,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PNT-01.jpg?v=1773082106","slug":"architectural-wallcoverings"},{"vendor":"Vahallan","active":4,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/unearthed-woodburn.jpg?v=1761064322","slug":"vahallan"},{"vendor":"Baker Lifestyle","active":4,"staged":0,"draft":3,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PW78025_3.jpg?v=1775761453","slug":"baker-lifestyle"},{"vendor":"Caroline Cecil Textiles","active":3,"staged":0,"draft":3,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/CCP-2348_11.jpg?v=1776795802","slug":"caroline-cecil-textiles"},{"vendor":"Alan Campbell","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/soft-lavender-on-tint-436_1_205506.jpg?v=1782265243","slug":"alan-campbell"},{"vendor":"Black Edition","active":3,"staged":0,"draft":0,"archived":2,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W916-04-zardozi-wallcovering-tundra_01_3b9771c7-20fc-40db-8a95-de05b2697309.jpg?v=1773709475","slug":"black-edition"},{"vendor":"Charles Burger","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/multi-341_1_021457.jpg?v=1782265258","slug":"charles-burger"},{"vendor":"Clarke and Clarke","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0201_01_CAC.jpg?v=1776795805","slug":"clarke-and-clarke-2"},{"vendor":"Cloth and Paper","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/light-blue-on-westover-275_1_043643.jpg?v=1782268820","slug":"cloth-and-paper"},{"vendor":"Fabricut","active":3,"staged":7,"draft":0,"archived":43,"deleted":7,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/seaton-wp-506.jpg?v=1761581842","slug":"fabricut"},{"vendor":"Holland and Sherry","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DWC-256039-DesignerWallcoverings-Los-Angeles-1_810332fc-fe17-4cc9-9ee4-873dd300d83d.jpg?v=1720563435","slug":"holland-and-sherry"},{"vendor":"Home Couture","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/multi-blue-green-beige-3423_1_162655.jpg?v=1782265251","slug":"home-couture"},{"vendor":"Malibu","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hiding-tigers-green-and-orange.jpg?v=1761762754","slug":"malibu"},{"vendor":"Peg Norriss","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/flying-west-orange.jpg?v=1760724954","slug":"peg-norriss"},{"vendor":"Pierre Frey","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/DWC-206982-DesignerWallcoverings-Los-Angeles-1.png?v=1690501546","slug":"pierre-frey"},{"vendor":"Plains","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/aqua-2522_1_145942.jpg?v=1782268838","slug":"plains"},{"vendor":"Sacha Walckhoff","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hide-and-seek-aqueous-wallpaper.jpg?v=1761326609","slug":"sacha-walckhoff"},{"vendor":"Suncloth","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Beau-Rivage-Orange-on-White-Suncloth-AC980-06WSUN_214409-sm-thumb.jpg?v=1782268831","slug":"suncloth"},{"vendor":"Villa Nova","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W538-02-zeta-wallcovering-shingle_02_8176564e-e7c7-4816-a64f-7a3d3b3d9416.jpg?v=1773707394","slug":"villa-nova"},{"vendor":"Zinc Textile","active":3,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ZW135-03-zorelli-wallcovering-umber_03.jpg?v=1773707390","slug":"zinc-textile"},{"vendor":"Clarence House","active":2,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Claence_House_at_DW_1647906.jpg?v=1572310944","slug":"clarence-house"},{"vendor":"Winfield Thybony","active":2,"staged":0,"draft":1,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3824_1_618454e1-9932-4209-8e66-185041788d24.jpg?v=1753121259","slug":"winfield-thybony"},{"vendor":"Kirkby Design","active":2,"staged":0,"draft":0,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/WK810-06-zig-zag-birds-wallcovering-silver_03_2fb60883-6fb6-446d-801f-7bf5a92178b5.jpg?v=1773707386","slug":"kirkby-design"},{"vendor":"Erika Wakerly","active":2,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Screenshot_2019-08-01_11.01.29.png?v=1572310884","slug":"erika-wakerly"},{"vendor":"Kravet Design","active":2,"staged":0,"draft":2,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3606_5_thumb_5197a1f7-d726-44bc-9a21-8eac0d9900e5.jpg?v=1776794894","slug":"kravet-design"},{"vendor":"Kravet Couture","active":2,"staged":0,"draft":2,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AMW10082_106_cf37a926-bc74-4fa1-a33c-091aff71b5ae.jpg?v=1776794890","slug":"kravet-couture"},{"vendor":"Atomic 50 Ceilings","active":2,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/41-UNFINISHED-SCA.jpg?v=1773706633","slug":"atomic-50-ceilings"},{"vendor":"Patty Madden","active":2,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/celestial-loom-silken-azure.jpg?v=1761496626","slug":"patty-madden"},{"vendor":"Sarah Bartholomew","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mallorcan-ikat-berry.jpg?v=1760989089","slug":"sarah-bartholomew"},{"vendor":"Lee Jofa Modern","active":1,"staged":0,"draft":1,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GWP-3750_161.jpg?v=1776795834","slug":"lee-jofa-modern"},{"vendor":"Scalamandre Fabrics","active":1,"staged":0,"draft":0,"archived":10177,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/S7_0003ATTC_DWC.jpg?v=1589937291","slug":"scalamandre-fabrics"},{"vendor":"Scion","active":1,"staged":0,"draft":1,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DWKK-155304.jpg?v=1776875769","slug":"scion"},{"vendor":"Kelly Wearstler","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/signal-paper-ocean.jpg?v=1760979312","slug":"kelly-wearstler"},{"vendor":"Happy Menocal","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/beasts-multi-on-ivory.jpg?v=1760732148","slug":"happy-menocal"},{"vendor":"Steven Abrams Photography","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ScreenShot2023-01-30at7.56.32AM.png?v=1675094359","slug":"steven-abrams-photography"},{"vendor":"Studio Ditte","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/vogel-behang-blauw-goud.jpg?v=1762277468","slug":"studio-ditte"},{"vendor":"G P & J Baker","active":1,"staged":0,"draft":1,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BW45141_2_7598bef2-55ce-4530-80c2-706adbab8a89.jpg?v=1776795816","slug":"g-p-j-baker"},{"vendor":"Ananbo","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/riviera.webp?v=1761541180","slug":"ananbo"},{"vendor":"French Market","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WDB4138-ASM.jpg?v=1572310884","slug":"french-market"},{"vendor":"Farrow & Ball","active":1,"staged":0,"draft":0,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/purnon.jpg?v=1761344027","slug":"farrow-ball"},{"vendor":"Emiliana Parati","active":1,"staged":0,"draft":0,"archived":14,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/emiliana-parati-valentin-yudashkin-5.jpg?v=1761090561","slug":"emiliana-parati"},{"vendor":"Edge Wallcovering","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/unnamed.jpg?v=1573747790","slug":"edge-wallcovering"},{"vendor":"DWHD","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/akasha-polaris.jpg?v=1775660108","slug":"dwhd"},{"vendor":"DW Exclusive Wallpaper","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DWC-211497-DesignerWallcoverings-Los-Angeles-4_7be9edb9-4fa6-4932-befb-1ff3ea511732.jpg?v=1694028327","slug":"dw-exclusive-wallpaper"},{"vendor":"Dupenny","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Accessorise-CADILLAC-WP-Thumb-Shop.jpg?v=1775598529","slug":"dupenny"},{"vendor":"Dedar","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/1__74269.1773625470.jpg?v=1773712278","slug":"dedar"},{"vendor":"A.S. Création","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/66e3a5f29fd1fd50090f5d5fce9b4ddc.jpg?v=1773629119","slug":"a-s-cr-ation"},{"vendor":"Coordonn","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/A00909_01.jpg?v=1739302772","slug":"coordonn-2"},{"vendor":"OLIVIA AND POPP","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Stud_700x_423d7fd3-711e-4365-8447-ca4675354f41.jpg?v=1572310884","slug":"olivia-and-popp"},{"vendor":"Catchii Netherlands Europe","active":1,"staged":0,"draft":0,"archived":0,"deleted":387,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Wallpaper-Behang-Posh-Snakes-gray-green-groen-grijs-Catchii-mockup_328e2e61-4b16-43d9-bf54-c100543af4bd.jpg?v=1744999054","slug":"catchii-netherlands-europe"},{"vendor":"Printy6","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/092ef5f6ae5f6de607dd664dab99fc87.png?v=1572310843","slug":"printy6"},{"vendor":"Rebecca Moses","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/close-up-dazzling-pearl.jpg?v=1761537905","slug":"rebecca-moses"},{"vendor":"Rebel Studio","active":1,"staged":0,"draft":1,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/the-swedish-forest.jpg?v=1760737227","slug":"rebel-studio"},{"vendor":"Celerie Kemble","active":1,"staged":0,"draft":0,"archived":0,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tortoise.jpg?v=1760721667","slug":"celerie-kemble"},{"vendor":"Roberto Cavalli","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/RC21014_7705b8e2-6e22-4efb-a09b-aaff24309dcc.jpg?v=1743188122","slug":"roberto-cavalli"},{"vendor":"Morris and Company","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/products/DCMW216804.jpg?v=1645497134","slug":"morris-and-company"},{"vendor":"Milton & King","active":1,"staged":0,"draft":0,"archived":1,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/great-oak-wallpaper.jpg?v=1760765930","slug":"milton-king"},{"vendor":"Mark Alexander","active":1,"staged":0,"draft":0,"archived":1,"deleted":237,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW110-03-kami-lake_03_50d9cb5c-8dae-41f2-afe6-547a8bd539fd.jpg?v=1775598512","slug":"mark-alexander"},{"vendor":"Malibu Walls","active":1,"staged":0,"draft":0,"archived":118,"deleted":1,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/0125783_aspen-wallpaper-teal.jpg?v=1774484431","slug":"malibu-walls"},{"vendor":"Linherr Hollingsworth","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/niko-mod-verde.jpg?v=1760985832","slug":"linherr-hollingsworth"},{"vendor":"Sara Bergqvist","active":1,"staged":0,"draft":0,"archived":0,"deleted":0,"img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/happy-rebel-peach.jpg?v=1760737102","slug":"sara-bergqvist"}]
\ No newline at end of file
diff --git a/public/v/_index.json b/public/v/_index.json
index 1026d3c..f8ee5ab 100644
--- a/public/v/_index.json
+++ b/public/v/_index.json
@@ -804,7 +804,7 @@
     "collections": 1,
     "shown": 1
   },
-  "Coordonn��": {
+  "Coordonn": {
     "slug": "coordonn-2",
     "collections": 1,
     "shown": 1
diff --git a/public/v/coordonn-2.json b/public/v/coordonn-2.json
index a86e042..75c19ee 100644
--- a/public/v/coordonn-2.json
+++ b/public/v/coordonn-2.json
@@ -1 +1 @@
-{"vendor":"Coordonn��","total":1,"collections":[{"name":"Other / Uncollected","count":1,"products":[{"t":"Bike ride Beige | Coordone Europe","sku":"DWDC-330558-Sample","p":"","h":"dwdc-330558","img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/A00909_01.jpg?v=1739302772","st":"active"}]}]}
\ No newline at end of file
+{"vendor":"Coordonn","total":1,"collections":[{"name":"Other / Uncollected","count":1,"products":[{"t":"Bike ride Beige | Coordone Europe","sku":"DWDC-330558-Sample","p":"","h":"dwdc-330558","img":"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/A00909_01.jpg?v=1739302772","st":"active"}]}]}
\ No newline at end of file

← a6d46ea Extend 3D drill-down to all 175 active vendors; add gen.mjs;  ·  back to Dw Catalog 3d  ·  D3: deep-link hash routing (#v=slug, #v=slug&c=i) — replaceS 3448a23 →