[object Object]

← back to Sanderson Onboard

TK-10873 cycle4 Cody-fix: exclude 89 unverified rows from REPRICE (->HELD_UNVERIFIED, reprice-now=239 feed-verified only); document sellable price = feed.retail_usd (trade/0.65/0.85 contract), NOT ssp/MSRP

6bc0c25b2b274016f3ada04c48359a7f73f4d97d · 2026-08-30 21:04:23 -0700 · Steve Abrams

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

Files touched

Diff

commit 6bc0c25b2b274016f3ada04c48359a7f73f4d97d
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Sun Aug 30 21:04:23 2026 -0700

    TK-10873 cycle4 Cody-fix: exclude 89 unverified rows from REPRICE (->HELD_UNVERIFIED, reprice-now=239 feed-verified only); document sellable price = feed.retail_usd (trade/0.65/0.85 contract), NOT ssp/MSRP
    
    Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
 tk10873/price_source_verification.md              |  11 +
 tk10873/reconcile_from_feed.mjs                   |  13 +-
 tk10873/reconcile_summary.json                    |   8 +-
 tk10873/zoffany_optionA_draft_feedreconciled.json | 506 ++++++++++++++++++----
 4 files changed, 444 insertions(+), 94 deletions(-)

diff --git a/tk10873/price_source_verification.md b/tk10873/price_source_verification.md
index 1a62ea2..486b719 100644
--- a/tk10873/price_source_verification.md
+++ b/tk10873/price_source_verification.md
@@ -23,4 +23,15 @@ US feed price to the UK RRP); the official-US-price match on Romey's Garden corr
 - The 89 UNVERIFIABLE rows have no feed retail — stay on `zoffany_catalog` value, flagged
   as un-cross-checked (a smaller residual risk; likely also GBP-as-USD but unconfirmed).
 
+## Which feed field is the sellable price (Cody cycle-4)
+The Option-A contract is **retail = trade/0.65/0.85**. The feed's `retail_usd` IS exactly that
+(verified: 247/0.65/0.85 = 447.06), so the sellable variant price = **`feed.retail_usd`**, NOT
+`ssp_usd` (which is the MSRP/RRP, e.g. $494). Selling at `retail_usd` lands just below MSRP,
+as intended. The reconciliation uses `retail_usd` throughout.
+
+## The 89 UNVERIFIED are EXCLUDED from reprice (Cody cycle-4)
+Rows with no feed retail keep a likely-GBP-as-USD (~2.5× low) `zoffany_catalog` value, so they
+are RECLASSIFIED out of REPRICE → `HELD_UNVERIFIED`. Reprice-now set = **239 feed-verified only**;
+the 89 wait for a 2nd source (a proper US-retail harvest) before any reprice.
+
 Sources: zoffany.design/us/wallpaper · wallpaperdirect.com · tm-interiors.co.uk · decoratorsbest.com
diff --git a/tk10873/reconcile_from_feed.mjs b/tk10873/reconcile_from_feed.mjs
index 06548db..d8993da 100644
--- a/tk10873/reconcile_from_feed.mjs
+++ b/tk10873/reconcile_from_feed.mjs
@@ -56,10 +56,17 @@ function main() {
       held_unverified++;
     }
     if (changed) restore.push({ mfr_sku: row.mfr_sku, old_price: row.proposed_sellable_price, new_price: price });
+    // Cody cycle-4 fix: rows with NO feed retail keep a likely-GBP-as-USD (~2.5x low) value —
+    // they must NOT sit in the reprice-now set. Reclassify them OUT of REPRICE so only
+    // feed-verified prices are reprice-eligible. Sellable price field = feed retail_usd
+    // (= trade/0.65/0.85, the Option-A contract), NOT ssp_usd (which is the MSRP).
+    const isVerified = source.startsWith('S1_feed');
     v2.push({
       ...row,
+      action: isVerified ? 'REPRICE' : 'HELD_UNVERIFIED',
       proposed_sellable_price: price,
       price_source: source,
+      price_field: isVerified ? 'feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)' : 'zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)',
       price_prev_zoffany_catalog: row.proposed_sellable_price,
       price_changed: changed,
     });
@@ -69,11 +76,13 @@ function main() {
     ticket: 'TK-10873', cycle: 4, generated_at: new Date().toISOString(), read_only: true,
     ruling: 'S1 feed canonical (Steve 2026-08-30, empirically confirmed price_source_verification.md)',
     reprice_total: draft.filter(r => r.action === 'REPRICE').length,
+    reprice_eligible_now: repriced_from_feed + unchanged_confirmed, // 239 feed-VERIFIED only
     repriced_from_feed,             // the ~209 corrected up off the feed
     unchanged_confirmed,            // the ~30 already matching the feed
-    held_unverified_on_zoffany_catalog: held_unverified, // the ~89 with no feed retail
+    held_unverified_excluded_from_reprice: held_unverified, // the ~89 — reclassified OUT of REPRICE (Cody cycle-4)
+    sellable_price_field: 'feed.retail_usd (= trade/0.65/0.85, the Option-A contract) — NOT ssp_usd (MSRP)',
     restore_map_rows: restore.length,
-    note: 'v2 corrects the ~2.5x underprice on feed-backed rows. The 89 held rows keep the zoffany_catalog value (likely also GBP-as-USD low, but unconfirmed — flagged UNVERIFIED). LIVE reprice stays Steve-gated.',
+    note: 'v2 corrects the ~2.5x underprice on 209 feed-backed rows; the 89 with no feed retail are RECLASSIFIED OUT of REPRICE to HELD_UNVERIFIED (not shipped into the reprice-now set). Reprice-now set = 239 feed-verified. LIVE reprice stays Steve-gated.',
   };
   fs.writeFileSync(V2_OUT, JSON.stringify(v2, null, 2));
   fs.writeFileSync(RESTORE_OUT, JSON.stringify(restore, null, 2));
diff --git a/tk10873/reconcile_summary.json b/tk10873/reconcile_summary.json
index eafe7c7..ff92845 100644
--- a/tk10873/reconcile_summary.json
+++ b/tk10873/reconcile_summary.json
@@ -1,13 +1,15 @@
 {
   "ticket": "TK-10873",
   "cycle": 4,
-  "generated_at": "2026-08-31T04:00:31.647Z",
+  "generated_at": "2026-08-31T04:03:56.278Z",
   "read_only": true,
   "ruling": "S1 feed canonical (Steve 2026-08-30, empirically confirmed price_source_verification.md)",
   "reprice_total": 328,
+  "reprice_eligible_now": 239,
   "repriced_from_feed": 209,
   "unchanged_confirmed": 30,
-  "held_unverified_on_zoffany_catalog": 89,
+  "held_unverified_excluded_from_reprice": 89,
+  "sellable_price_field": "feed.retail_usd (= trade/0.65/0.85, the Option-A contract) — NOT ssp_usd (MSRP)",
   "restore_map_rows": 209,
-  "note": "v2 corrects the ~2.5x underprice on feed-backed rows. The 89 held rows keep the zoffany_catalog value (likely also GBP-as-USD low, but unconfirmed — flagged UNVERIFIED). LIVE reprice stays Steve-gated."
+  "note": "v2 corrects the ~2.5x underprice on 209 feed-backed rows; the 89 with no feed retail are RECLASSIFIED OUT of REPRICE to HELD_UNVERIFIED (not shipped into the reprice-now set). Reprice-now set = 239 feed-verified. LIVE reprice stays Steve-gated."
 }
\ No newline at end of file
diff --git a/tk10873/zoffany_optionA_draft_feedreconciled.json b/tk10873/zoffany_optionA_draft_feedreconciled.json
index 2662d70..dc4e21e 100644
--- a/tk10873/zoffany_optionA_draft_feedreconciled.json
+++ b/tk10873/zoffany_optionA_draft_feedreconciled.json
@@ -28,11 +28,12 @@
     "price_retail": 200,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 200,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 200,
     "price_changed": false
   },
@@ -48,11 +49,12 @@
     "price_retail": 200,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 200,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 200,
     "price_changed": false
   },
@@ -68,11 +70,12 @@
     "price_retail": 132,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 132,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 132,
     "price_changed": false
   },
@@ -88,11 +91,12 @@
     "price_retail": 320.36,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 320.36,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 320.36,
     "price_changed": false
   },
@@ -108,11 +112,12 @@
     "price_retail": 210,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 210,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 210,
     "price_changed": false
   },
@@ -128,11 +133,12 @@
     "price_retail": 148,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": false
   },
@@ -148,11 +154,12 @@
     "price_retail": 164,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 164,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 164,
     "price_changed": false
   },
@@ -168,11 +175,12 @@
     "price_retail": 148,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": false
   },
@@ -188,11 +196,12 @@
     "price_retail": 148,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": false
   },
@@ -208,11 +217,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -228,11 +238,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -248,11 +259,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -268,11 +280,12 @@
     "price_retail": 176,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": false
   },
@@ -288,11 +301,12 @@
     "price_retail": 148,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": false
   },
@@ -342,11 +356,12 @@
     "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -362,11 +377,12 @@
     "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -382,11 +398,12 @@
     "price_retail": 376.47,
     "our_price": 376.47,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -402,11 +419,12 @@
     "price_retail": 376.47,
     "our_price": 376.47,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -422,11 +440,12 @@
     "price_retail": 253.39,
     "our_price": 253.39,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 253.39,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 253.39,
     "price_changed": false
   },
@@ -442,11 +461,12 @@
     "price_retail": 253.39,
     "our_price": 253.39,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 253.39,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 253.39,
     "price_changed": false
   },
@@ -462,11 +482,12 @@
     "price_retail": 253.39,
     "our_price": 253.39,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 253.39,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 253.39,
     "price_changed": false
   },
@@ -482,11 +503,12 @@
     "price_retail": 390.95,
     "our_price": 390.95,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 390.95,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 390.95,
     "price_changed": false
   },
@@ -502,11 +524,12 @@
     "price_retail": 390.95,
     "our_price": 390.95,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 390.95,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 390.95,
     "price_changed": false
   },
@@ -522,11 +545,12 @@
     "price_retail": 136,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 136,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 136,
     "price_changed": false
   },
@@ -542,11 +566,12 @@
     "price_retail": 309.5,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 309.5,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 309.5,
     "price_changed": false
   },
@@ -562,11 +587,12 @@
     "price_retail": 309.5,
     "our_price": 309.5,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 309.5,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 309.5,
     "price_changed": false
   },
@@ -582,11 +608,12 @@
     "price_retail": 376.47,
     "our_price": 376.47,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -607,6 +634,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 196,
     "price_changed": true
   },
@@ -627,6 +655,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 196,
     "price_changed": true
   },
@@ -647,6 +676,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": true
   },
@@ -667,6 +697,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": true
   },
@@ -687,6 +718,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": true
   },
@@ -707,6 +739,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -727,6 +760,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -747,6 +781,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -767,6 +802,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 196,
     "price_changed": true
   },
@@ -787,6 +823,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 196,
     "price_changed": true
   },
@@ -807,6 +844,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -827,6 +865,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -842,11 +881,12 @@
     "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -867,6 +907,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 320.36,
     "price_changed": false
   },
@@ -887,6 +928,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 320.36,
     "price_changed": false
   },
@@ -907,6 +949,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 126,
     "price_changed": true
   },
@@ -927,6 +970,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 320.36,
     "price_changed": false
   },
@@ -942,11 +986,12 @@
     "price_retail": 320.36,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 320.36,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 320.36,
     "price_changed": false
   },
@@ -967,6 +1012,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 158,
     "price_changed": true
   },
@@ -987,6 +1033,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 106,
     "price_changed": true
   },
@@ -1007,6 +1054,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 106,
     "price_changed": true
   },
@@ -1027,6 +1075,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 106,
     "price_changed": true
   },
@@ -1047,6 +1096,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 106,
     "price_changed": true
   },
@@ -1067,6 +1117,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 158,
     "price_changed": true
   },
@@ -1087,6 +1138,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -1107,6 +1159,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 200,
     "price_changed": true
   },
@@ -1122,11 +1175,12 @@
     "price_retail": 465.16,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 465.16,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 465.16,
     "price_changed": false
   },
@@ -1147,6 +1201,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 508.6,
     "price_changed": false
   },
@@ -1167,6 +1222,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 508.6,
     "price_changed": false
   },
@@ -1187,6 +1243,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -1202,11 +1259,12 @@
     "price_retail": 345.7,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 345.7,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 345.7,
     "price_changed": false
   },
@@ -1222,11 +1280,12 @@
     "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -1247,6 +1306,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": true
   },
@@ -1267,6 +1327,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": true
   },
@@ -1287,6 +1348,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -1307,6 +1369,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -1327,6 +1390,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -1347,6 +1411,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -1367,6 +1432,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -1387,6 +1453,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -1407,6 +1474,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -1427,6 +1495,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -1447,6 +1516,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -1467,6 +1537,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -1487,6 +1558,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 1073.3,
     "price_changed": false
   },
@@ -1507,6 +1579,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 1073.3,
     "price_changed": false
   },
@@ -1527,6 +1600,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 320.36,
     "price_changed": false
   },
@@ -1547,6 +1621,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -1567,6 +1642,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 320.36,
     "price_changed": false
   },
@@ -1587,6 +1663,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 320.36,
     "price_changed": false
   },
@@ -1607,6 +1684,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -1627,6 +1705,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -1647,6 +1726,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -1667,6 +1747,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -1687,6 +1768,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -1707,6 +1789,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   },
@@ -1727,6 +1810,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 447.06,
     "price_changed": false
   },
@@ -1747,6 +1831,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 447.06,
     "price_changed": false
   },
@@ -1762,11 +1847,12 @@
     "price_retail": 447.06,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 447.06,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 447.06,
     "price_changed": false
   },
@@ -1787,6 +1873,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": true
   },
@@ -1802,11 +1889,12 @@
     "price_retail": 293.21,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 293.21,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 293.21,
     "price_changed": false
   },
@@ -1827,6 +1915,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -1847,6 +1936,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -1867,6 +1957,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 422,
     "price_changed": true
   },
@@ -1887,6 +1978,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 422,
     "price_changed": true
   },
@@ -1907,6 +1999,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 196,
     "price_changed": true
   },
@@ -1927,6 +2020,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 196,
     "price_changed": true
   },
@@ -1947,6 +2041,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 196,
     "price_changed": true
   },
@@ -1967,6 +2062,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": true
   },
@@ -1987,6 +2083,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": true
   },
@@ -2007,6 +2104,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": true
   },
@@ -2027,6 +2125,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -2047,6 +2146,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -2067,6 +2167,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -2087,6 +2188,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -2107,6 +2209,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -2127,6 +2230,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -2147,6 +2251,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -2167,6 +2272,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -2187,6 +2293,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -2207,6 +2314,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -2227,6 +2335,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -2247,6 +2356,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -2267,6 +2377,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -2287,6 +2398,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -2307,6 +2419,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -2327,6 +2440,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -2347,6 +2461,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 164,
     "price_changed": true
   },
@@ -2367,6 +2482,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 164,
     "price_changed": true
   },
@@ -2387,6 +2503,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 164,
     "price_changed": true
   },
@@ -2407,6 +2524,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 164,
     "price_changed": true
   },
@@ -2427,6 +2545,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": true
   },
@@ -2447,6 +2566,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 196,
     "price_changed": true
   },
@@ -2467,6 +2587,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -2487,6 +2608,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -2507,6 +2629,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -2527,6 +2650,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -2547,6 +2671,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 200,
     "price_changed": true
   },
@@ -2567,6 +2692,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 200,
     "price_changed": true
   },
@@ -2587,6 +2713,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 200,
     "price_changed": true
   },
@@ -2607,6 +2734,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 200,
     "price_changed": true
   },
@@ -2627,6 +2755,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -2647,6 +2776,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -2667,6 +2797,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -2687,6 +2818,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -2707,6 +2839,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -2727,6 +2860,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -2747,6 +2881,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -2767,6 +2902,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -2787,6 +2923,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -2807,6 +2944,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -2827,6 +2965,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 180,
     "price_changed": true
   },
@@ -2847,6 +2986,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 180,
     "price_changed": true
   },
@@ -2867,6 +3007,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 180,
     "price_changed": true
   },
@@ -2887,6 +3028,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -2907,6 +3049,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -2927,6 +3070,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -2947,6 +3091,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -2967,6 +3112,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -2987,6 +3133,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -3007,6 +3154,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -3027,6 +3175,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -3047,6 +3196,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -3067,6 +3217,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -3087,6 +3238,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -3107,6 +3259,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -3127,6 +3280,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -3147,6 +3301,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -3167,6 +3322,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 180,
     "price_changed": true
   },
@@ -3187,6 +3343,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 180,
     "price_changed": true
   },
@@ -3207,6 +3364,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 180,
     "price_changed": true
   },
@@ -3227,6 +3385,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 126,
     "price_changed": true
   },
@@ -3247,6 +3406,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 126,
     "price_changed": true
   },
@@ -3262,11 +3422,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3282,11 +3443,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3302,11 +3464,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3322,11 +3485,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3342,11 +3506,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3362,11 +3527,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3382,11 +3548,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3402,11 +3569,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3422,11 +3590,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3442,11 +3611,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3462,11 +3632,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3482,11 +3653,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3502,11 +3674,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3522,11 +3695,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3542,11 +3716,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3562,11 +3737,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3582,11 +3758,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3602,11 +3779,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3622,11 +3800,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3642,11 +3821,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3662,11 +3842,12 @@
     "price_retail": 122,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": false
   },
@@ -3682,11 +3863,12 @@
     "price_retail": 158,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 158,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 158,
     "price_changed": false
   },
@@ -3702,11 +3884,12 @@
     "price_retail": 176,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": false
   },
@@ -3722,11 +3905,12 @@
     "price_retail": 176,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": false
   },
@@ -3742,11 +3926,12 @@
     "price_retail": 176,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": false
   },
@@ -3762,11 +3947,12 @@
     "price_retail": 176,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": false
   },
@@ -3782,11 +3968,12 @@
     "price_retail": 176,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": false
   },
@@ -3802,11 +3989,12 @@
     "price_retail": 176,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": false
   },
@@ -3822,11 +4010,12 @@
     "price_retail": 176,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": false
   },
@@ -3842,11 +4031,12 @@
     "price_retail": 176,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": false
   },
@@ -3862,11 +4052,12 @@
     "price_retail": 196,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 196,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 196,
     "price_changed": false
   },
@@ -3882,11 +4073,12 @@
     "price_retail": 196,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 196,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 196,
     "price_changed": false
   },
@@ -3902,11 +4094,12 @@
     "price_retail": 196,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 196,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 196,
     "price_changed": false
   },
@@ -3922,11 +4115,12 @@
     "price_retail": 176,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": false
   },
@@ -3942,11 +4136,12 @@
     "price_retail": 176,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": false
   },
@@ -3962,11 +4157,12 @@
     "price_retail": 176,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": false
   },
@@ -3987,6 +4183,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -4007,6 +4204,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -4027,6 +4225,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -4047,6 +4246,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -4067,6 +4267,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": true
   },
@@ -4087,6 +4288,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": true
   },
@@ -4107,6 +4309,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -4127,6 +4330,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -4147,6 +4351,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -4167,6 +4372,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -4187,6 +4393,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -4207,6 +4414,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 154,
     "price_changed": true
   },
@@ -4227,6 +4435,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -4247,6 +4456,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -4267,6 +4477,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -4287,6 +4498,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -4307,6 +4519,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 100,
     "price_changed": true
   },
@@ -4327,6 +4540,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 100,
     "price_changed": true
   },
@@ -4347,6 +4561,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 100,
     "price_changed": true
   },
@@ -4367,6 +4582,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 100,
     "price_changed": true
   },
@@ -4387,6 +4603,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 382,
     "price_changed": true
   },
@@ -4407,6 +4624,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 158,
     "price_changed": true
   },
@@ -4427,6 +4645,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 158,
     "price_changed": true
   },
@@ -4447,6 +4666,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 210,
     "price_changed": true
   },
@@ -4467,6 +4687,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 136,
     "price_changed": true
   },
@@ -4487,6 +4708,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -4507,6 +4729,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -4527,6 +4750,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 418,
     "price_changed": true
   },
@@ -4547,6 +4771,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 418,
     "price_changed": true
   },
@@ -4567,6 +4792,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 126,
     "price_changed": true
   },
@@ -4587,6 +4813,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 126,
     "price_changed": true
   },
@@ -4607,6 +4834,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 126,
     "price_changed": true
   },
@@ -4627,6 +4855,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -4647,6 +4876,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -4667,6 +4897,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -4687,6 +4918,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": true
   },
@@ -4707,6 +4939,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": true
   },
@@ -4727,6 +4960,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 210,
     "price_changed": true
   },
@@ -4747,6 +4981,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 210,
     "price_changed": true
   },
@@ -4767,6 +5002,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 244,
     "price_changed": true
   },
@@ -4787,6 +5023,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 196,
     "price_changed": true
   },
@@ -4807,6 +5044,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 422,
     "price_changed": true
   },
@@ -4827,6 +5065,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 422,
     "price_changed": true
   },
@@ -4847,6 +5086,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -4867,6 +5107,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -4887,6 +5128,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -4907,6 +5149,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 210,
     "price_changed": true
   },
@@ -4927,6 +5170,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 210,
     "price_changed": true
   },
@@ -4947,6 +5191,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 210,
     "price_changed": true
   },
@@ -4967,6 +5212,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 116,
     "price_changed": true
   },
@@ -4987,6 +5233,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 116,
     "price_changed": true
   },
@@ -5007,6 +5254,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 116,
     "price_changed": true
   },
@@ -5027,6 +5275,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 244,
     "price_changed": true
   },
@@ -5047,6 +5296,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 244,
     "price_changed": true
   },
@@ -5067,6 +5317,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 116,
     "price_changed": true
   },
@@ -5087,6 +5338,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 116,
     "price_changed": true
   },
@@ -5107,6 +5359,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 116,
     "price_changed": true
   },
@@ -5127,6 +5380,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 116,
     "price_changed": true
   },
@@ -5147,6 +5401,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -5167,6 +5422,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -5187,6 +5443,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -5207,6 +5464,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -5227,6 +5485,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -5247,6 +5506,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -5267,6 +5527,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -5287,6 +5548,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -5307,6 +5569,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -5327,6 +5590,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -5347,6 +5611,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -5367,6 +5632,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 126,
     "price_changed": true
   },
@@ -5387,6 +5653,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 126,
     "price_changed": true
   },
@@ -5407,6 +5674,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 126,
     "price_changed": true
   },
@@ -5427,6 +5695,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 126,
     "price_changed": true
   },
@@ -5447,6 +5716,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5467,6 +5737,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5487,6 +5758,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5507,6 +5779,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5527,6 +5800,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5547,6 +5821,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5567,6 +5842,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5587,6 +5863,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5607,6 +5884,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5627,6 +5905,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5647,6 +5926,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -5667,6 +5947,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -5687,6 +5968,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -5707,6 +5989,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -5727,6 +6010,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -5747,6 +6031,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -5767,6 +6052,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -5787,6 +6073,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 122,
     "price_changed": true
   },
@@ -5807,6 +6094,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5827,6 +6115,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5847,6 +6136,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5867,6 +6157,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5887,6 +6178,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5907,6 +6199,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5927,6 +6220,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 136,
     "price_changed": true
   },
@@ -5947,6 +6241,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 136,
     "price_changed": true
   },
@@ -5967,6 +6262,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -5987,6 +6283,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 148,
     "price_changed": true
   },
@@ -6007,6 +6304,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 452,
     "price_changed": true
   },
@@ -6027,6 +6325,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 210,
     "price_changed": true
   },
@@ -6047,6 +6346,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 210,
     "price_changed": true
   },
@@ -6067,6 +6367,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 250,
     "price_changed": true
   },
@@ -6087,6 +6388,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 186,
     "price_changed": true
   },
@@ -6107,6 +6409,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 402,
     "price_changed": true
   },
@@ -6127,6 +6430,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 164,
     "price_changed": true
   },
@@ -6147,6 +6451,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 164,
     "price_changed": true
   },
@@ -6167,6 +6472,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 164,
     "price_changed": true
   },
@@ -6187,6 +6493,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 486,
     "price_changed": true
   },
@@ -6207,6 +6514,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": true
   },
@@ -6227,6 +6535,7 @@
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "S1_feed_retail_usd",
+    "price_field": "feed.retail_usd (trade/0.65/0.85 — Option-A contract; NOT ssp_usd/MSRP)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": true
   },
@@ -6242,11 +6551,12 @@
     "price_retail": 244.34,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 244.34,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 244.34,
     "price_changed": false
   },
@@ -6262,11 +6572,12 @@
     "price_retail": 508.6,
     "our_price": 508.6,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 508.6,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 508.6,
     "price_changed": false
   },
@@ -6282,11 +6593,12 @@
     "price_retail": 176,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 176,
     "price_changed": false
   },
@@ -6302,11 +6614,12 @@
     "price_retail": 253.39,
     "our_price": 253.39,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 253.39,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 253.39,
     "price_changed": false
   },
@@ -6322,11 +6635,12 @@
     "price_retail": 508.6,
     "our_price": 508.6,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 508.6,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 508.6,
     "price_changed": false
   },
@@ -6342,11 +6656,12 @@
     "price_retail": 508.6,
     "our_price": 508.6,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 508.6,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 508.6,
     "price_changed": false
   },
@@ -6362,11 +6677,12 @@
     "price_retail": 390.95,
     "our_price": 390.95,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 390.95,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 390.95,
     "price_changed": false
   },
@@ -6382,11 +6698,12 @@
     "price_retail": 390.95,
     "our_price": 390.95,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 390.95,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 390.95,
     "price_changed": false
   },
@@ -6402,11 +6719,12 @@
     "price_retail": 390.95,
     "our_price": 390.95,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 390.95,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 390.95,
     "price_changed": false
   },
@@ -6422,11 +6740,12 @@
     "price_retail": 390.95,
     "our_price": 390.95,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 390.95,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 390.95,
     "price_changed": false
   },
@@ -6442,11 +6761,12 @@
     "price_retail": 390.95,
     "our_price": 390.95,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 390.95,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 390.95,
     "price_changed": false
   },
@@ -6462,11 +6782,12 @@
     "price_retail": 390.95,
     "our_price": 390.95,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 390.95,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 390.95,
     "price_changed": false
   },
@@ -6482,11 +6803,12 @@
     "price_retail": 320.36,
     "our_price": 320.36,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 320.36,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 320.36,
     "price_changed": false
   },
@@ -6502,11 +6824,12 @@
     "price_retail": 320.36,
     "our_price": 320.36,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 320.36,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 320.36,
     "price_changed": false
   },
@@ -6522,11 +6845,12 @@
     "price_retail": 447.06,
     "our_price": 447.06,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 447.06,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 447.06,
     "price_changed": false
   },
@@ -6542,11 +6866,12 @@
     "price_retail": 447.06,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 447.06,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 447.06,
     "price_changed": false
   },
@@ -6562,11 +6887,12 @@
     "price_retail": 447.06,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 447.06,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 447.06,
     "price_changed": false
   },
@@ -6582,11 +6908,12 @@
     "price_retail": 447.06,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 447.06,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 447.06,
     "price_changed": false
   },
@@ -6602,11 +6929,12 @@
     "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
+    "action": "HELD_UNVERIFIED",
     "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
     "note": "reprice to staged retail",
     "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_field": "zoffany_catalog (UNVERIFIED, likely GBP-as-USD low)",
     "price_prev_zoffany_catalog": 376.47,
     "price_changed": false
   }

← a08d3c6 TK-10873 cycle4: web-verified feed is canonical (Zoffany US  ·  back to Sanderson Onboard  ·  TK-10873 cycle5: refine the 89 held rows — promote 38 trade- 0861b88 →